Skip to content

Commit

Permalink
test lint
Browse files Browse the repository at this point in the history
  • Loading branch information
area363 committed Dec 19, 2024
1 parent efeeb1d commit 52301a0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public async Task InvokeAsync(HttpContext context)
if (_enableIpRateLimiting && IpBanMiddleware.IsIpBanned(remoteIp))
{
_logger.Information($"[GRAPHQL-REQUEST-CAPTURE] Skipping logging for banned IP: {remoteIp}");
await _next(context); // Continue the request pipeline
await _next(context);
return;
}

Expand Down

0 comments on commit 52301a0

Please sign in to comment.