Ramon Smits
Ramon Smits
When an endpoint starts it is assumed that destinations queues will exist. Take the configuration: transport.Routing().RouteToEndpoint(typeof(MyMessage), "non-existing-destination"); At start or when the destination is referenced first at runtime the endpoint...
Send-only endpoint instances that are Idle for most of the time don't need to be continuously connected. An optional "disconnect when Idle" could make Idle instances a little more lightweight...
On read-only file systems `LicenseManager` fails to create a directory. >Failed to initialize the license ```txt System.IO.IOException: Read-only file system : '/home/appuser/.local/share/ParticularSoftware' at System.IO.FileSystem.CreateDirectory(String fullPath) at System.IO.Directory.CreateDirectory(String path) at Particular.Licensing.TrialStartDateStore.GetTrialStartDate()...
At the moment the default transaction isolation level is implicitly set to Read Committed for Core. This is also documented: https://docs.particular.net/transports/transactions#controlling-transaction-scope-options-isolation-level However, that conflicts with the default for `TransactionScope` which...
Settings behavior of `MessageSentToErrorQueue` via `RecoverabilitySettings` changes in v7 results in the following error: > The given key NServiceBus.RecoverabilitySettings was not present in the dictionary. Code sample: ```c# public class...
When a user exceeds the transport limit there often a transport-specific exception is raised like `Microsoft.Azure.ServiceBus.MessageSizeExceededException`. It would be nice is the transport would rethrow this as `NServiceBus.MessageSizeExceededException` as this...
I noticed the following value for the header EnclosedMessageTypes: Store.Messages.Events.OrderAccepted__impl, NServiceBusMessageProxies, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null;Store.Messages.Events.OrderAccepted, Store.Messages, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null This seems incorrect. I only expected the interface type(s) but not the...
NServiceBus core does not support message priority. However, RabbitMQ does support priority queues. In order to make this work the following needs to be implemented: - Ability to create a...