Skip to content

Commit

Permalink
Increase mantis.sse.numConsumerThreads maximum from 8 to 64. (#716)
Browse files Browse the repository at this point in the history
  • Loading branch information
crioux-stripe authored Oct 3, 2024
1 parent fe13f9b commit c29dfa4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public class ParameterUtils {

ParameterDefinition<Integer> sse_numConsumerThreads = new IntParameter()
.name("mantis.sse.numConsumerThreads")
.validator(Validators.range(1, 8))
.validator(Validators.range(1, 64))
.description("number of consumer threads draining the queue to write to SSE")
.defaultValue(1)
.build();
Expand Down

0 comments on commit c29dfa4

Please sign in to comment.