We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
resilience4j.bulkhead: configs: default: maxConcurrentCalls: 100 instances: backendA: maxConcurrentCalls: 10 backendB: maxWaitDuration: 10ms maxConcurrentCalls: 20 resilience4j.thread-pool-bulkhead: configs: default: maxThreadPoolSize: 4 coreThreadPoolSize: 2 queueCapacity: 2 instances: backendA: baseConfig: default backendB: maxThreadPoolSize: 1 coreThreadPoolSize: 1 queueCapacity: 1 resilience4j.ratelimiter: configs: default: registerHealthIndicator: false limitForPeriod: 10 limitRefreshPeriod: 1s timeoutDuration: 0 eventConsumerBufferSize: 100 instances: backendA: baseConfig: default backendB: limitForPeriod: 6 limitRefreshPeriod: 500ms timeoutDuration: 3s resilience4j.timelimiter: configs: default: cancelRunningFuture: false timeoutDuration: 2s instances: backendA: baseConfig: default backendB: baseConfig: default
all these are configured in the application.yaml however
private final RateLimiter rateLimiter; variable declared in BackendBControl is unused.
private final RateLimiter rateLimiter;
may be testcases are missing..???
The text was updated successfully, but these errors were encountered:
No branches or pull requests
all these are configured in the application.yaml however
private final RateLimiter rateLimiter;
variable declared in BackendBControl is unused.The text was updated successfully, but these errors were encountered: