Files
loadtest/History/2026-07-10-fix-multipart-file.md
T
2026-07-10 21:19:31 +04:00

12 lines
651 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 2026-07-10 — Fix: base64 как файл (multipart file-part)
## План
Обойти `SecRequestBodyNoFilesLimit = 128KB` — отправлять base64 как файловую часть multipart (с filename), а не как поле формы.
Файловые части идут под `SecRequestBodyLimit = 12.5MB`.
## Изменения
1. `site/static/app.js``fd.append('data', ...)``fd.append('data', new Blob([b64]), name + '.b64')`
2. `site/app.py` — добавить приём base64 из `request.files`, совместить с существующим file-режимом
3. Bump версии 1.0.5 → 1.0.6