NServiceBus
NServiceBus copied to clipboard
Build, version, and monitor better microservices with the most powerful service platform for .NET
### Describe the suggested improvement _Originally raised by @boblangley, moving this to the NServiceBus repo as a new issue._ NServiceBus does not prevent a user from registering more than one...
NServiceBus 8 introduced a new transport API, but the older `UseTransport` is still available and has not been marked as obsolete. We don't want to remove this older API until...
### Describe the feature. #### Describe the requested feature Currently the startup diagnostic file does not contain the DataBus section if an endpoint has this feature in place. THis request...
There is no way to correlate processing attempts. For example, a message can be processed multiple times but any messages send or published cannot be related to a specific processing...
With NServiceBus version 8.0 (I haven't tried with older releases), the following works: ```csharp var endpointConfig = new EndpointConfiguration("Repeater"); endpointConfig.UseTransport(new LearningTransport()); var startableEndpoint = await Endpoint.Create(endpointConfig); for (var i =...
### Describe the feature. #### Is your feature related to a problem? Please describe. Every failure that occurs causes the span to be tagged as failed. Suppose the customer is...
### Describe the suggested improvement #### Is your improvement related to a problem? Please describe. Currently, in a send-only endpoint that doesn't have OpenTelemetry enabled, any outgoing message will still...
### Describe the feature. A message consumer tries to correlate handlers to invoke based on the information from the [NServiceBus.EnclosedMessageTypes](https://docs.particular.net/nservicebus/messaging/headers#serialization-headers-nservicebus-enclosedmessagetypes). If the consumer does not have any matching types deserialization...
### Describe the suggested improvement #### Is your improvement related to a problem? Please describe. When delayed retries are enabled, the current log has a warning as below when recoverability...
### Describe the bug #### Description We have a system with many applications with their own messages contract packages (published as nuget packages) which publishes events that other applications subscribe...