Alexey Zimarev
Alexey Zimarev
I will accept the PR if you add this error to the list you mentioned. I am not sure that SQL error number will be 35 though.
Look also here https://github.com/dotnet/SqlClient/issues/2103#issuecomment-1764206103, it seems that on Windows it will produce 10053, but on Linux it's impossible to figure out.
Strangely enough, the only thing that should have happened is that the subscription would drop and resubscribe. Can you confirm that the subscription just silently died? Do you have any...
Yeah, that can actually be fixed the same way as event handlers and checkpoint stores are attached to subscriptions. The problem is that gateways DI integration is way less comprehensive...
Can you post the complete code for those? ```csharp services.AddGateway("SellOrders", ...); services.AddGateway("BuyOrders", ...); ```
I managed to create a quick fix. It won't work with functions but it will work with transformer classes. Here's the registration function (it existed before): ```csharp public static IServiceCollection...
Ok, I managed to change the registration code to use keyed dependencies. It's all a bit simpler now and handlers are completely independent. So, everything should work: functions, classes, whatever.
You're right, I haven't considered concurrent calls for the same object. The expected scenario, however, was a bit different and doesn't involve concurrency. In many cases, a user opens a...
I planned to use `IMemoryCache` (who in their sane mind created an interface per cache kind???), and I don't know if it involves serialisation. Their Redis implementation does, of course,...
As I am currently working on subscriptions (split of physical subscription and consumer pipeline), it is now up for grabs. It's relatively straightforward, and I think the good first step...