mehmetsen80
mehmetsen80
I still have the same issue, the directive is not there anymore and I can't close the dropdown
Even I'd fork, I don't know how to fix it for Symfony 4.0. We are using this library heavily, wish they upgraded it sooner for Symfony 4.0.
I have the same problem here. Constructing a bean also does not help. I am routing the redisratelimiter dynamically but the constructor new RedisRateLimiter(replenishRate, burstCapacity, requestedTokens) does not mark the...
By the way, it's all about the applicationContext. even the below didn't matter ``` GatewayFilter gatewayFilter = new RequestRateLimiterGatewayFilterFactory(redisRateLimiter, exchange -> Mono.just(Objects.requireNonNull(exchange.getRequest().getRemoteAddress()).getAddress().getHostAddress())) .apply(config -> { config.setRouteId(apiRoute.getRouteIdentifier()); config.setDenyEmptyKey(true); config.setEmptyKeyStatus(HttpStatus.TOO_MANY_REQUESTS.name()); }); gatewayFilterSpec.filter(gatewayFilter);...