Skip to content

Commit

Permalink
Fix comment in HystrixThreadPoolProperties
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Jacobs committed Oct 26, 2016
1 parent a735c80 commit 27d0ca9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ protected HystrixThreadPoolProperties(HystrixThreadPoolKey key, Setter builder,

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

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

0 comments on commit 27d0ca9

Please sign in to comment.