Skip to content

Commit

Permalink
fix MAX_QUEUE_SIZE to match config file default
Browse files Browse the repository at this point in the history
It's not really clear what to do here. If someone has altered their
config file to remove this line, this patch will alter behaviour of
their instance. However, the example config default has been 10000 since
first commit, and that's probably a more sensible default value. It
might nonetheless be more sensible to just document the discrepancy.
  • Loading branch information
bucko909 committed Aug 29, 2024
1 parent ea4148f commit 1ae7548
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/carbon/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
MAX_DATAPOINTS_PER_MESSAGE=500,
MAX_AGGREGATION_INTERVALS=5,
FORWARD_ALL=True,
MAX_QUEUE_SIZE=1000,
MAX_QUEUE_SIZE=10000,
QUEUE_LOW_WATERMARK_PCT=0.8,
TIME_TO_DEFER_SENDING=0.0001,
ENABLE_AMQP=False,
Expand Down

0 comments on commit 1ae7548

Please sign in to comment.