Aleksander
Aleksander
Hi, cool project :) Trying to make this work with the C# SDK, I had to make this fix I suspect is required here too: https://github.com/asleire/cosmosdb-server/commit/4945c1ee5c54901a15e00f8e02a26b10bde72288
Any known workarounds?
Personally I expected Rebus to treat it similarly to when a matching message handler is not found by logging an error message, so it didn't occur to me to enable...
[Istio](https://istio.io/latest/about/faq/distributed-tracing/#how-to-support-tracing) also requires B3 headers for proper tracing
> > [Istio](https://istio.io/latest/about/faq/distributed-tracing/#how-to-support-tracing) also requires B3 headers for proper tracing > > @asleire , can you please elaborate ? Istio supports distributed tracing, but only with B3 headers. When using...
Stumbled upon this looking at C# 12's [primary constructors](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-12.0/primary-constructors). Currently, all my services that use Serilog inject `Serilog.ILogger logger` and instantiates the private field as `logger.ForContext`. Using primary constructors this...
It certainly is an easy interface to implement :) I gave it a try in one project, but I'm not sure it's something I want to keep doing as I...
> I think we could interecept the "[will save document](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#textDocument_willSave)" event in the language server, and send back a notice (modal) to the client about disabling CRLF That sounds great!...
I was trying to use this in order to run automated integration tests in a linux environment without setting up a real cosmos database. Unfortunately I gave up since I...
Specifying `ContainerImageTags` under `variables` in the Gitlab CI template worked for me: ``` variables: ContainerImageTags: latest;${VERSION} script: - dotnet publish $PROJECT_DIR -p PublishProfile=DefaultContainer -p ContainerBaseImage=$CONTAINER_BASE_IMAGE -p ContainerRepository=$CONTAINER_REPOSITORY -p ContainerRegistry=$CI_REGISTRY ```...