diff options
author | molotkov-and <molotkov-and@ydb.tech> | 2023-09-29 14:08:05 +0300 |
---|---|---|
committer | molotkov-and <molotkov-and@ydb.tech> | 2023-09-29 14:50:12 +0300 |
commit | e4e626b5f3b1c421690223f466d7034f659b2774 (patch) | |
tree | 369b505a64330dc744f3c01c12f639b3237c3068 /library/cpp | |
parent | ff60d0edb1fffa224b9e1080f09dbd49e4326131 (diff) | |
download | ydb-e4e626b5f3b1c421690223f466d7034f659b2774.tar.gz |
KIKIMR-19463: Increase url perform size in http actor lib
Diffstat (limited to 'library/cpp')
-rw-r--r-- | library/cpp/actors/http/http.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/actors/http/http.h b/library/cpp/actors/http/http.h index 2711b307c8a..8b35de737ee 100644 --- a/library/cpp/actors/http/http.h +++ b/library/cpp/actors/http/http.h @@ -215,7 +215,7 @@ public: }; static constexpr size_t MaxMethodSize = 8; - static constexpr size_t MaxURLSize = 1024; + static constexpr size_t MaxURLSize = 2048; static constexpr size_t MaxProtocolSize = 4; static constexpr size_t MaxVersionSize = 4; static constexpr size_t MaxStatusSize = 3; |