Skip to content

Commit

Permalink
Fix a little spell mistake in comments.
Browse files Browse the repository at this point in the history
Fix a little spell mistake in comments, "-1 turns if off" should be "-1 turns it off".
  • Loading branch information
starlight36 authored Nov 8, 2016
1 parent 7598e9a commit 49922d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public abstract class HystrixThreadPoolProperties {
static int default_maximumSize = 10; // maximum size of thread pool
static int default_keepAliveTimeMinutes = 1; // minutes to keep a thread alive
static int default_maxQueueSize = -1; // size of queue (this can't be dynamically changed so we use 'queueSizeRejectionThreshold' to artificially limit and reject)
// -1 turns if off and makes us use SynchronousQueue
// -1 turns it off and makes us use SynchronousQueue
static boolean default_allow_maximum_size_to_diverge_from_core_size = false; //should the maximumSize config value get read and used in configuring the threadPool
//turning this on should be a conscious decision by the user, so we default it to false

Expand Down

0 comments on commit 49922d3

Please sign in to comment.