Mikhail Chumakov
Mikhail Chumakov
> Hi @zordark , we block writes when the circuit breaker is triggered. In order to resume indexing, you will need to clear out the cache. @jmazanec15 thx for the...
You can pass initialized container to Startup class directly. ```c# public class Startup : IStartup { private IContainer _container; public Startup(IConfiguration configuration, IContainer container) { Configuration = configuration; _container =...
We are working in .net 4.8 environment and using next workaround. In csproj file with migrations we are coping all dependencies to output folder: ``` compile; runtime; build; native; contentfiles;...
> @zordark Are you passing query parameters as part of `request.Path`? If so that may be the issue, as it's assumed to be only the path and the query parameters...
Another problem related to this is that I can see real responses only because the client logs raw responses. But when it comes to deserialization I see that error: ```...
Good day. Eventually, we found the issue. Someone in our team created the wrapper with the same name. But I'm still curious why it can affect the sign process. The...