-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I found this while updating pg_embedded version to any 0.8.0+ #213
Comments
I've seen that occasionally, but I don't recall why. I don't see it now on my system. Does deleting your
|
Unfortunately no |
Is there something unusual about your OS or filesystem? Tough to debug without steps to reproduce. |
No, fedora 39 basic xfce etc... |
I do see the error with 0.9.0, yes. |
are we going to dig ? |
searching on internet, the error points to rust std lib... I found this diff on pg_emb:
updating to latest the error persists: ➜ trustify git:(update-pg) ✗ cargo run --bin trustd
Finished dev [unoptimized + debuginfo] target(s) in 0.28s
Running `target/debug/trustd`
2024-04-29T15:06:57.529926Z WARN trustd::db: Setting up managed DB; not suitable for production use!
Error: Invalid cross-device link (os error 18)
➜ trustify git:(update-pg) ✗ rustc --version
rustc 1.77.2 (25ef9e3d8 2024-04-09) |
it will be solved with 👍 |
This fixes it for me: theseus-rs/postgresql-embedded#58 |
great work the error gone ! ➜ trustify git:(update-pg) ✗ cargo run --bin trustd
Finished dev [unoptimized + debuginfo] target(s) in 0.28s
Running `target/debug/trustd`
2024-04-29T18:53:34.497093Z WARN trustd::db: Setting up managed DB; not suitable for production use!
2024-04-29T18:53:34.604099Z INFO trustd::db: PostgreSQL installed in "/home/heliofrota/Desktop/tc/trustify/.trustify/postgres"
2024-04-29T18:53:34.604200Z INFO trustd::db: Running on port 39423
2024-04-29T18:53:34.623816Z INFO trustify_common::db: connect to postgres://trustify:trustify@localhost:39423/trustify
Error: Connection Error: error returned from database: password authentication failed for user "trustify"
Caused by:
error returned from database: password authentication failed for user "trustify"
error returned from database: password authentication failed for user "trustify"
password authentication failed for user "trustify"
➜ trustify git:(update-pg) ✗ cat Cargo.toml | rg postgre
postgresql_embedded = { path = "/home/heliofrota/Desktop/postgresql-embedded/postgresql_embedded/" |
This should be addressed in https://github.com/theseus-rs/postgresql-embedded/releases/tag/v0.9.1; thanks for the PR! |
Yep! Already merged in #222 Thanks for the quick turnaround, @brianheineman |
Initially thinking that was related to
Breaking changes - define bootstrap superuser as postgres
https://github.com/theseus-rs/postgresql-embedded/releases/tag/v0.9.0
But it also happens with 0.8.0
The text was updated successfully, but these errors were encountered: