mirror of https://gitee.com/bigwinds/arangodb
changed default value for `--server.max-packet-size` from 128 MB to 256 MB
This commit is contained in:
parent
6196a2704a
commit
f99723a533
|
@ -1,6 +1,8 @@
|
||||||
devel
|
devel
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
* changed default value for `--server.max-packet-size` from 128 MB to 256 MB
|
||||||
|
|
||||||
* change default string truncation length from 80 characters to 256 characters for
|
* change default string truncation length from 80 characters to 256 characters for
|
||||||
`print`/`printShell` functions in ArangoShell and arangod. This will emit longer
|
`print`/`printShell` functions in ArangoShell and arangod. This will emit longer
|
||||||
prefixes of string values before truncating them with `...`, which is helpful
|
prefixes of string values before truncating them with `...`, which is helpful
|
||||||
|
|
|
@ -44,7 +44,7 @@ std::unordered_map<std::string, std::string> const
|
||||||
SimpleHttpClient::NO_HEADERS{};
|
SimpleHttpClient::NO_HEADERS{};
|
||||||
|
|
||||||
/// @brief default value for max packet size
|
/// @brief default value for max packet size
|
||||||
size_t SimpleHttpClient::MaxPacketSize = 128 * 1024 * 1024;
|
size_t SimpleHttpClient::MaxPacketSize = 256 * 1024 * 1024;
|
||||||
|
|
||||||
SimpleHttpClient::SimpleHttpClient(GeneralClientConnection* connection,
|
SimpleHttpClient::SimpleHttpClient(GeneralClientConnection* connection,
|
||||||
double requestTimeout, bool warn)
|
double requestTimeout, bool warn)
|
||||||
|
|
Loading…
Reference in New Issue