skip to Main Content

Why X-RateLimit-Remaining -1 in response header while using spring cloud api gateway ratelimit with redis?

I implemented ratelimit with redis in my spring cloud api gateway. Here is part of application.yml: spring: cloud: gateway: httpclient: ssl: useInsecureTrustManager: true discovery: locator: enabled: true routes: - id: test-rest-service uri: lb://test-rest-service predicates: - Path=/test/** filters: - RewritePath=/test/(?<path>.*), /${path}…

VIEW QUESTION
Back To Top
Search