robpackwood

Results 3 issues of robpackwood

The issue occurs when multiple instances of an application are running against the same input queue in RabbitMQ and an exception is thrown within a Rebus handler class. The message...

Backlog

For Sagas, I configure with syntax like this: ``` rebusConfigurer.Sagas(configurer => { configurer.EnforceExclusiveAccess(); configurer.StoreInSqlServer( config.RebusConfig.PersistenceConnectionFactory, config.RebusConfig.SagaDataDbTable, config.RebusConfig.SagaIndexDbTable); }); ``` For Timeouts, I configure with syntax like this: ``` rebusConfigurer.Timeouts(configurer =>...

enhancement
help wanted

Right now, there is no implementation for the periodic outbox cleaner. It simply logs a message like so: ``` async Task RunCleaner() { _logger.Debug("Checking outbox storage for messages to be...