Skip to content

Commit 27d0ca9

Browse files
author
Matt Jacobs
committed
Fix comment in HystrixThreadPoolProperties
1 parent a735c80 commit 27d0ca9

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)