From 5fa8a78b011edb390b95e2764d30a2271bb2b5fa Mon Sep 17 00:00:00 2001 From: Pavel <pavel@collectrium.com> Date: Thu, 9 Aug 2012 16:03:52 +0400 Subject: [PATCH] Reduced max message size --- lib/MonetDBConnection.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/MonetDBConnection.rb b/lib/MonetDBConnection.rb index 3b8eb1f..5333def 100644 --- a/lib/MonetDBConnection.rb +++ b/lib/MonetDBConnection.rb @@ -65,7 +65,7 @@ class MonetDBConnection @@HOUR = 3600 # maximum size (in bytes) for a monetdb message to be sent - @@MAX_MESSAGE_SIZE = 8192 + @@MAX_MESSAGE_SIZE = 2048 # endianness of a message sent to the server @@CLIENT_ENDIANNESS = "BIG" -- GitLab