Volodymyr Dombrovskyi
Volodymyr Dombrovskyi
```csharp class SomeDisposableClass : IDisposable { public void Dispose() { } } var disposableInstance = new SomeDisposableClass(); _serviceContainer.RegisterFallback((serviceType, serviceName) => serviceType == typeof(SomeDisposableClass), request => disposableInstance); _serviceContainer.Dispose(); ``` In this...
This modifies Metrics sample. The goal is to change in `prometheus.yml` this `- targets: ['host.docker.internal:5048'] # hard-coded port matches launchSettings.json` to this `- targets: ['app']`, so that prometheus container can...
### **User description** resolves #245 ___ ### **PR Type** Enhancement, Bug fix ___ ### **Description** - Added support for bind mounts in Docker Compose manifests. - Introduced `BindMount` model and...
**Version** 5.0.17 **Describe the bug** Given collection contains millions of documents. Calling `DeleteMany(x => array.Contains(x.Foo))` to delete documents, resulting in million of documents removed, takes around 40 minutes to complete,...
### Description When using `Duration` or `InfiniteLoop` command modes, execution statistics show zeros in the UI despite the workload executing successfully. This occurs because batched execution results are not reported...
When using the RabbitMQ transport, the application fails to start if RabbitMQ is unavailable at startup. The failure is treated as fatal and the host never reaches a “running” state....