File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -307,9 +307,9 @@ sentry.conf.py: |-
307
307
# Turn off memory reporting
308
308
"memory-report": False,
309
309
# Some stuff so uwsgi will cycle workers sensibly
310
- 'max-requests': 100000 ,
311
- 'max-requests-delta': 500 ,
312
- 'max-worker-lifetime': 86400 ,
310
+ 'max-requests': { { .Values.config.web.maxRequests } } ,
311
+ 'max-requests-delta': { { .Values.config.web.maxRequestsDelta } } ,
312
+ 'max-worker-lifetime': { { .Values.config.web.maxWorkerLifetime } } ,
313
313
# Duplicate options from sentry default just so we don't get
314
314
# bit by sentry changing a default value that we depend on.
315
315
'thunder-lock': True,
Original file line number Diff line number Diff line change @@ -1721,6 +1721,9 @@ config:
1721
1721
# No YAML relay config given
1722
1722
web :
1723
1723
httpKeepalive : 15
1724
+ maxRequests : 100000
1725
+ maxRequestsDelta : 500
1726
+ maxWorkerLifetime : 86400
1724
1727
1725
1728
clickhouse :
1726
1729
enabled : true
You can’t perform that action at this time.
0 commit comments