Skip to content

Commit cbe30c3

Browse files
DocSavageclaude
andauthored
Fix invalid suffix in uwsgi buffer-size value (#99)
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 303a22e commit cbe30c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

uwsgi.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ enable_threads = true
1818
listen = 1024
1919
max-requests = 20480
2020
reload-on-rss = 128
21-
buffer-size = 32768g
21+
buffer-size = 32768
2222
harakiri = 360

0 commit comments

Comments
 (0)