stefanprodan / AspNetCoreRateLimit

ASP.NET Core rate limiting middleware

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

IpRateLimitProcessor requires IRateLimitCounterStore even though it is not used in code

aKzenT opened this issue · comments

IpRateLimitMiddleware requires a counter store, which is passed through IpRateLimitProcessor. However IpRateLimitProcessor doesn't actually use the counter store. When using RedisProcessingStrategy, there should be no need to register a counter store in the DI container.

I can confirm that.