Diego Martin

Results 45 comments of Diego Martin

Interesting question. I guess it also depends on whether multiple event handlers (or message handlers) run in parallel or sequentially. How does MicroBus work? If a publisher publishes in the...

I am having similar problems. No warnings but errors, directly. Using a .NET 6 specflow test assembly to test a .NET 6 class library. Tests run properly but living doc...

@ebwinters @SabotageAndi yes, you're right. Sorry, it was the first time I tried living doc and I thought they were errors, but the html is properly generated and working well....

I'm also interested. It fails when ``` English.Register(); Storage.Current = new DiskStorage("catalyst-models"); var fastTextLanguageDetector = await FastTextLanguageDetector.FromStoreAsync(Language.Any, Version.Latest, ""); ``` with a ``` System.IO.FileNotFoundException Unable to find the specified file....

I'm experiencing some test hanging within GitLab and docker image for the dotnet SDK 5.0 and this seems a quite common issue. See https://github.com/microsoft/vstest/issues/2080 One question for those of you...

Verified the deadlock issue does not happen for the `IHostedService` when disabling parallelization as per Thiago's suggestion. In my functional tests project I create a `Properties/AssemblyInfo.cs` to disable parallelization only...

Hi All. I've just faced this limitation. I use a class library that targets netstandard2.0 and wraps the "old" `EventStore.Client` 5.0.x. I was having a look at this new gRPC...

Not sure if it's related. I'm also a GitLab user and found a very similar problem so I suspect it's probably related to the SDK image, but in my case...

Out of curiosity, is anybody experiencing this only when using `IHostedService`? [In my case](https://github.com/dotnet/sdk/issues/9452#issuecomment-810065702) it seems that's what causing the tests to freeze within a linux image and disabling parallelization...

I'm trying to find out scalability limitations for blazor server in order to decide whether I'm better off with blazor wasm and explicit websocket communication, for an app that requires...