We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d65107 commit cb6e23fCopy full SHA for cb6e23f
src/RateLimitingExecutor.cs
@@ -85,8 +85,6 @@ public void CancelExecution()
85
86
public async ValueTask DisposeAsync()
87
{
88
- GC.SuppressFinalize(this);
89
-
90
if (_cancellationTokenSource.IsValueCreated && !_cancellationTokenSource.Value.IsCancellationRequested)
91
92
await _cancellationTokenSource.Value.CancelAsync().NoSync();
@@ -100,8 +98,6 @@ public async ValueTask DisposeAsync()
100
98
101
99
public void Dispose()
102
103
104
105
106
107
_cancellationTokenSource.Value.Cancel();
0 commit comments