NServiceBus icon indicating copy to clipboard operation
NServiceBus copied to clipboard

Build, version, and monitor better microservices with the most powerful service platform for .NET

Results 217 NServiceBus issues
Sort by recently updated
recently updated
newest added

Users sometimes run into issues when the transport infrastructure isn't reachable during endpoint startup time. Unlike once the endpoint has started and connection losses can be handled and re-established by...

While there is [a community system.text.json serializer](https://github.com/NServiceBusExtensions/NServiceBus.Json) we should consider supporting it as part of our offering. Since it's now part of .NET we should also consider including it as...

This occurs after updating to NServicebus 8.0.0-rc.3 I have not been able to find what causes the the exception so I can not provide a test case. Exception: Error AD0001...

When using the [Installer APIs](https://github.com/Particular/NServiceBus/pull/6563), the `EndpointConfiguration` can't be reused in the same process, e.g. ```c# await Installer.Setup(configuration); await Endpoint.Create(configuration); ``` does not work because the `EndpointConfiguration` tracks its usage...

With the new transport seam, the `TransportDefinition` type already moved from the old configuration style of using a `Settings` class defined in core with extension methods defined in the downstream...

[Automatic rate limiting](https://docs.particular.net/nservicebus/recoverability/#automatic-rate-limiting) would be better if it doesn't ramp back up to 100% processing on the first successful message. A more gradual ramp up would be better.

## Problem It can happen that start partially fails so that a receive component has been initialized and started which creates a transport specific `IPushMessage` instance. However, if the receiving...

Resolves closing/tearing down resources on partial start. Moved `RunningEndpointInstance` as far up, it only has stop logic and that logic is what is needed to be stopped if start fails....

_Discussion forum thread: [Prevent Starting Message from trying to find matching saga](https://discuss.particular.net/t/prevent-starting-message-from-trying-to-find-matching-saga/3182)_ When a saga can only be started by a single message, the API and analyzers still force users...

Added > Ensure to explicitly register all interfaces of a given type. That hopefully prevents users from converting: configuration.RegisterComponents(c => c.ConfigureComponent(DependencyLifecycle.SingleInstance)); into: configuration.RegisterComponents(c => c.AddSingleton()); and not into: configuration.RegisterComponents(c =>...