summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Klishin <michael@clojurewerkz.org>2018-05-09 12:39:19 -0500
committerMichael Klishin <michael@clojurewerkz.org>2018-05-09 12:39:19 -0500
commit7a3898110e9bd76fc42f51c3e7eba78135ac9e0f (patch)
treeb696094b5d97a1a5b648cb7308af57457ce5fb5a
parent1eb80a11bd13dc79f0a27af4de6a14e31093b1b8 (diff)
downloadrabbitmq-server-git-7a3898110e9bd76fc42f51c3e7eba78135ac9e0f.tar.gz
Use 2047
Since channel 0 exists on every connection for negotiation and error communication. 655365 = (1 << 16) - 1, so 2047 = (1 << 11) - 1.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5b8835e3cc..da56b2ad9c 100644
--- a/Makefile
+++ b/Makefile
@@ -25,7 +25,7 @@ define PROJECT_ENV
%% breaks the QPid Java client
{frame_max, 131072},
%% see rabbitmq-server#1593
- {channel_max, 2048},
+ {channel_max, 2047},
{connection_max, infinity},
{heartbeat, 60},
{msg_store_file_size_limit, 16777216},