-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
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
add AutoDeleteOnIdle setting #359
Conversation
|
/// <summary> | ||
/// Overrides the default time to auto delete queues and topics when idle. | ||
/// </summary> | ||
[ObsoleteEx( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The setting (if added) shouldn't be obsoleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed setting from AzureServiceBusSettings
get => autoDeleteOnIdle; | ||
set | ||
{ | ||
if (value < TimeSpan.FromMinutes(5)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Worth adding a comment with a link to the docs about the minimal value of QueueDescription.AutoDeleteOnIdle
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added comment with link to microsoft docs
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
exposes AutoDeleteOnIdle setting for queues and topics.
closes #358