We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 deleted"); }
This request is to implement the cleaner. Perhaps add a configuration option for the Outbox functionality such as:
EnableOutboxCleaner OutboxCleanerIntervalInSeconds (currently hardcoded to run every 120 seconds)
The text was updated successfully, but these errors were encountered:
Potential implementation as well as options (pseudocode with comments) are in the commit on the 'outbox-cleaner' feature branch here: https://github.com/D63H/Rebus.SqlServer/tree/outbox-cleaner
Sorry, something went wrong.
No branches or pull requests
Right now, there is no implementation for the periodic outbox cleaner. It simply logs a message like so:
This request is to implement the cleaner. Perhaps add a configuration option for the Outbox functionality such as:
EnableOutboxCleaner
OutboxCleanerIntervalInSeconds (currently hardcoded to run every 120 seconds)
The text was updated successfully, but these errors were encountered: