Skip to content

Commit 35e79e6

Browse files
DocSavageclaude
andcommitted
Fix invalid suffix in uwsgi buffer-size value
The buffer-size was set to `32768g` but uWSGI buffer-size only accepts plain integers (bytes). The trailing `g` is not a valid suffix and causes the setting to be silently ignored, falling back to the default of 4096 bytes. See CAVEconnectome/middle_auth#74 for context on how this was discovered. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 1258d96 commit 35e79e6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

uwsgi.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ listen = 128
2424
max-requests = 2048
2525
max-worker-lifetime = 3600
2626
reload-on-rss = 128
27-
buffer-size = 32768g
27+
buffer-size = 32768
2828
harakiri = 600
2929
http-timeout = 600
3030
socket-timeout = 600

0 commit comments

Comments
 (0)