File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 43
43
SENTRY_WEB_HOST = "127.0.0.1"
44
44
SENTRY_WEB_PORT = SENTRY_APIDOCS_WEB_PORT
45
45
SENTRY_WEB_OPTIONS = {
46
- "workers" : 2 ,
46
+ "workers" : 1 ,
47
47
"limit_request_line" : 0 ,
48
48
"secure_scheme_headers" : {"X-FORWARDED-PROTO" : "https" },
49
49
}
Original file line number Diff line number Diff line change 244
244
SENTRY_WEB_HOST = '0.0.0.0'
245
245
SENTRY_WEB_PORT = 9000
246
246
SENTRY_WEB_OPTIONS = {
247
- # 'workers': 3 , # the number of web workers
247
+ # 'workers': 1 , # the number of web workers
248
248
}
249
249
250
250
###############
Original file line number Diff line number Diff line change @@ -126,6 +126,6 @@ SENTRY_DIGESTS = 'sentry.digests.backends.redis.RedisBackend'
126
126
SENTRY_WEB_HOST = '0.0.0.0'
127
127
SENTRY_WEB_PORT = 9000
128
128
SENTRY_WEB_OPTIONS = {
129
- # 'workers': 3 , # the number of web workers
129
+ # 'workers': 1 , # the number of web workers
130
130
# 'protocol': 'uwsgi', # Enable uwsgi protocol instead of http
131
131
}
Original file line number Diff line number Diff line change @@ -49,8 +49,8 @@ def __init__(
49
49
options .setdefault ("protocol" , "http" )
50
50
options .setdefault ("auto-procname" , True )
51
51
options .setdefault ("procname-prefix-spaced" , "[Sentry]" )
52
- options .setdefault ("workers" , 3 )
53
- options .setdefault ("threads" , 4 )
52
+ options .setdefault ("workers" , 1 )
53
+ options .setdefault ("threads" , 2 )
54
54
options .setdefault ("http-timeout" , 30 )
55
55
options .setdefault ("vacuum" , True )
56
56
options .setdefault ("thunder-lock" , True )
You can’t perform that action at this time.
0 commit comments