Skip to content

Commit 1bf896b

Browse files
authored
Merge pull request Netflix#1405 from mattrjacobs/fix-comment-in-thread-pool-properties
Fix comment in HystrixThreadPoolProperties
2 parents a735c80 + 27d0ca9 commit 1bf896b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hystrix-core/src/main/java/com/netflix/hystrix/HystrixThreadPoolProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ protected HystrixThreadPoolProperties(HystrixThreadPoolKey key, Setter builder,
8282

8383
this.corePoolSize = getProperty(propertyPrefix, key, "coreSize", builder.getCoreSize(), default_coreSize);
8484
//this object always contains a reference to the configuration value for the maximumSize of the threadpool
85-
//it only gets applied if .threadpool
85+
//it only gets applied if allowMaximumSizeToDivergeFromCoreSize is true
8686
this.maximumPoolSize = getProperty(propertyPrefix, key, "maximumSize", builder.getMaximumSize(), default_maximumSize);
8787

8888
this.keepAliveTime = getProperty(propertyPrefix, key, "keepAliveTimeMinutes", builder.getKeepAliveTimeMinutes(), default_keepAliveTimeMinutes);

0 commit comments

Comments
 (0)