Netflix / Hystrix

Hystrix is a latency and fault tolerance library designed to isolate points of access to remote systems, services and 3rd party libraries, stop cascading failure and enable resilience in complex distributed systems where failure is inevitable.
24.08k stars 4.7k forks source link

1.5.18 unknown thread pool property: maximumSize #1980

Open huskebi opened 4 years ago

huskebi commented 4 years ago

Using v1.5.18, throw an exception: unknown thread pool property: maximumsize, check the code, and find that the maximumsize property cannot be configured since v1.5.14. The configuration example is as follows: threadPoolProperties = { @HystrixProperty(name="coreSize", value = "2"), @HystrixProperty(name="maximumSize", value = "3"), @HystrixProperty(name="allowMaximumSizeToDivergeFromCoreSize", value = "true"), @HystrixProperty(name="maxQueueSize", value = "1"), },