Replies: 3 comments
-
Just had this happen. I solved it by fixing my .env file. My rust log like was missing the last quotation mark, so I fixed it and the problem resolved itself -RUST_LOG = "info,tower_http=trace,grab_backend=debug
+RUST_LOG = "info,tower_http=trace,grab_backend=debug" |
Beta Was this translation helpful? Give feedback.
-
Just bumped into this but my message is the same as the OP. So I'm not missing a quotation mark. I haven't made any changes to my .env file recently. Tried a |
Beta Was this translation helpful? Give feedback.
-
TLDR Finally found out what was wrong in my case. I was trying to build one of my crates in workspace A. It depends on a crate in workspace B. A different create from my dependency in workspace B had an error in it's PS. Error was removing |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi folks,
Since a few days ago I have been unable to build my project in Docker. The first error, on the first
sqlx::query!
invocation, is:Followed by
In full:
What I have tried:
rust:1.53.0
,ekidd/rust-musl-builder:1.51.0
)sqlx
to 5.5.2 and 5.5.5Cargo.lock
andcargo clean
I have no idea why the error would appear only while building in Docker. I copy over my
Cargo.lock
file. When I build outside of Docker, I use the same rust version, I useexport SQLX_OFFLINE=1
, the same build command and everything works.Relevant discussion:
Any tips are welcome.
Beta Was this translation helpful? Give feedback.
All reactions