diff options
| author | Michael Klishin <michael@clojurewerkz.org> | 2018-05-09 12:39:19 -0500 |
|---|---|---|
| committer | Michael Klishin <michael@clojurewerkz.org> | 2018-05-09 12:39:19 -0500 |
| commit | 7a3898110e9bd76fc42f51c3e7eba78135ac9e0f (patch) | |
| tree | b696094b5d97a1a5b648cb7308af57457ce5fb5a | |
| parent | 1eb80a11bd13dc79f0a27af4de6a14e31093b1b8 (diff) | |
| download | rabbitmq-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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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}, |
