Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,14 @@ internal class AmqpConnectionScope : IDisposable
/// than the expected expiration by this amount.
/// </summary>
///
private static TimeSpan AuthorizationRefreshBuffer { get; } = TimeSpan.FromMinutes(5);
private static TimeSpan AuthorizationRefreshBuffer { get; } = TimeSpan.FromMinutes(10);

/// <summary>
/// The minimum amount of time for authorization to be refreshed; any calculations that
/// call for refreshing more frequently will be substituted with this value.
/// </summary>
///
private static TimeSpan MinimumAuthorizationRefresh { get; } = TimeSpan.FromMinutes(4);
private static TimeSpan MinimumAuthorizationRefresh { get; } = TimeSpan.FromMinutes(2);

/// <summary>
/// The amount time to allow to refresh authorization of an AMQP link.
Expand Down