mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-06-19 10:38:15 +08:00
fixed stupid double request bug from bad merge
This commit is contained in:
@ -36,8 +36,6 @@ namespace Ocelot.RateLimit.Middleware
|
||||
if (!DownstreamRoute.ReRoute.EnableEndpointEndpointRateLimiting)
|
||||
{
|
||||
_logger.LogDebug($"EndpointRateLimiting is not enabled for {DownstreamRoute.ReRoute.DownstreamPathTemplate}");
|
||||
await _next.Invoke(context);
|
||||
|
||||
await _next.Invoke(context);
|
||||
return;
|
||||
}
|
||||
@ -48,8 +46,6 @@ namespace Ocelot.RateLimit.Middleware
|
||||
if (IsWhitelisted(identity, options))
|
||||
{
|
||||
_logger.LogDebug($"{DownstreamRoute.ReRoute.DownstreamPathTemplate} is white listed from rate limiting");
|
||||
await _next.Invoke(context);
|
||||
|
||||
await _next.Invoke(context);
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user