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 50e5232 commit e3425c9Copy full SHA for e3425c9
src/Sentry/Http/HttpTransportBase.cs
@@ -271,6 +271,7 @@ private void ExtractRateLimits(HttpHeaders responseHeaders)
271
272
// Join to a string to handle both single-header and multi-header cases
273
var rateLimitsEncoded = string.Join(",", rateLimitHeaderValues);
274
+ _options.LogDebug("Parsing rate limit headers: {0}", rateLimitsEncoded);
275
276
// Parse and order by retry-after so that the longer rate limits are set last (and not overwritten)
277
var rateLimits = RateLimit.ParseMany(rateLimitsEncoded).OrderBy(rl => rl.RetryAfter);
0 commit comments