diff options
author | Joe George <joe@zeroc.com> | 2021-02-02 11:31:50 -0500 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2021-02-02 11:31:50 -0500 |
commit | 8c8d242f6c31a2bcec1eddb2f39c2ca411079d9c (patch) | |
tree | 81865e431a54de6fc9807a7a6f74197e26b29bdc /cpp/src/IceGrid/Parser.cpp | |
parent | Update Glacier2 tests to use C++11 mapping (diff) | |
download | ice-8c8d242f6c31a2bcec1eddb2f39c2ca411079d9c.tar.bz2 ice-8c8d242f6c31a2bcec1eddb2f39c2ca411079d9c.tar.xz ice-8c8d242f6c31a2bcec1eddb2f39c2ca411079d9c.zip |
IceGrid and IceStorm fixes
Diffstat (limited to 'cpp/src/IceGrid/Parser.cpp')
-rw-r--r-- | cpp/src/IceGrid/Parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/Parser.cpp b/cpp/src/IceGrid/Parser.cpp index 8d85f207cd0..3613eecc511 100644 --- a/cpp/src/IceGrid/Parser.cpp +++ b/cpp/src/IceGrid/Parser.cpp @@ -2171,7 +2171,7 @@ Parser::showFile(const string& id, const string& reader, const string& filename, bool head, bool tail, bool follow, int lineCount) { - int maxBytes = _communicator->getProperties()->getPropertyAsIntWithDefault("Ice.MessageMaxSize", 1024) * 1024; + int maxBytes = _communicator->getProperties()->getPropertyAsIntWithDefault("Ice.MessageSizeMax", 1024) * 1024; shared_ptr<FileIteratorPrx> it; |