1
0
Fork 0

changed default value for `--server.max-packet-size` from 128 MB to 256 MB

This commit is contained in:
jsteemann 2017-03-02 13:22:41 +01:00
parent 6196a2704a
commit f99723a533
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,8 @@
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
`print`/`printShell` functions in ArangoShell and arangod. This will emit longer
prefixes of string values before truncating them with `...`, which is helpful

View File

@ -44,7 +44,7 @@ std::unordered_map<std::string, std::string> const
SimpleHttpClient::NO_HEADERS{};
/// @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,
double requestTimeout, bool warn)