Skip to content

Commit f62023e

Browse files
authored
Merge pull request #787 from michaelklishin/patch-1
Use a frame_max of 131072 by default for RabbitMQ 4.1.0 compatibility
2 parents b2c82f5 + b17134f commit f62023e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/connect.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ function openFrames(vhost, query, credentials, extraClientProperties) {
6666

6767
// tune-ok
6868
'channelMax': intOrDefault(query.channelMax, 0),
69-
'frameMax': intOrDefault(query.frameMax, 0x1000),
69+
'frameMax': intOrDefault(query.frameMax, 131072),
7070
'heartbeat': intOrDefault(query.heartbeat, 0),
7171

7272
// open

0 commit comments

Comments
 (0)