Skip to content

Commit

Permalink
refactor: disable AutoRequeue by default
Browse files Browse the repository at this point in the history
  • Loading branch information
WeihanLi committed Jan 4, 2025
1 parent 6a91e9f commit 8683101
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WeihanLi.Common/Event/AckQueue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public sealed class AckQueueOptions
{
public TimeSpan AckTimeout { get; set; } = TimeSpan.FromMinutes(1);

public bool AutoRequeue { get; set; } = true;
public bool AutoRequeue { get; set; }

public TimeSpan RequeuePeriod { get; set; } = TimeSpan.FromMinutes(1);
}
Expand Down

0 comments on commit 8683101

Please sign in to comment.