Skip to content
Snippets Groups Projects
Commit 3e456978 authored by Mergen Imeev's avatar Mergen Imeev Committed by Vladimir Davydov
Browse files

app: increase max configuration parameters length

The maximum length of box.cfg{} string parameters is now 512 instead of
256 before.

NO_DOC=no need to document
NO_TEST=will be added in EE

(cherry picked from commit f5511d45)
parent 0a9bb63e
No related branches found
No related tags found
No related merge requests found
## feature/box
* The maximum length of `box.cfg{}` string parameters is now 512 instead of 256.
......@@ -34,7 +34,7 @@
#include "tt_static.h"
#include "lua/uri.h"
enum { MAX_OPT_NAME_LEN = 256, MAX_OPT_VAL_LEN = 256 };
enum { MAX_OPT_NAME_LEN = 256, MAX_OPT_VAL_LEN = 512 };
static void
cfg_get(const char *param)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment