Replies: 1 comment
-
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.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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