Fredrik Enestad
Fredrik Enestad
I've made a (quick and dirty) [custom version](https://github.com/fredr/zipkin-cpp-opentracing/commit/de4c9a003360c1c2b6c8c74ba81f3ccfa997da9c) of the lib, for debuggin, that propagates the `x-cloud-trace-context` header instead of the b3 headers.
Just like @tuckers-tech says, when specifying your request and response schema you'll need to specify the header names that your schema requires. If you for some reason need to access...
I ended up here after getting empty profiles from our services built with musl. I wasn't sure what the status was, are we still waiting for something to be released...
When I added the pub/sub `MessageStream` I hid the `CancellationToken` within the struct, and cancel it when it is dropped. Then the user of the API doesn't have to think...
That sounds very reasonable. In terms of expectations from my end, if Linux is tier 1 and other Unix systems are best effort and might miss some features, I would...
See https://github.com/phillipberndt/autorandr?tab=readme-ov-file#wayland you need to unset WAYLAND_DISPLAY when running the command: ``` $ WAYLAND_DISPLAY= autorandr ```
I tried it with the latest version of encore (1.45.7), checked out the prisma example, and it generated without problems. Have you made any changes to the example code? What...
The encore cli uses `go-containerregistry` to communicate with the docker daemon, and it currently does not have support for reading the mirror config, nor configuring mirrors, see https://github.com/google/go-containerregistry/issues/1200 But you...
Nice one, and thanks for opening this issue. We use cargo workspaces, so all rust projects in the repo use the same cargo.lock file in the root (see https://doc.rust-lang.org/book/ch14-03-cargo-workspaces.html). The...
We've added a `encore exec` command that will setup the encore infrastructure and environment variables for your app, and then execute a command. E.g like this ``` encore exec --...