Document that Tomcat's maxQueueCapacity need to be greater than 0
Closes gh-42726
This commit is contained in:
parent
476d575371
commit
b203780dcb
|
|
@ -937,7 +937,8 @@ public class ServerProperties {
|
||||||
private int minSpare = 10;
|
private int minSpare = 10;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Maximum capacity of the thread pool's backing queue.
|
* Maximum capacity of the thread pool's backing queue. This setting only has
|
||||||
|
* an effect if the value is greater than 0.
|
||||||
*/
|
*/
|
||||||
private int maxQueueCapacity = 2147483647;
|
private int maxQueueCapacity = 2147483647;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue