We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f911d2 commit 25ab0e8Copy full SHA for 25ab0e8
test/src/com/rabbitmq/client/test/functional/FrameMax.java
@@ -74,7 +74,7 @@ public void testFrameSizes()
74
public void testRejectLargeFramesDuringConnectionNegotiation()
75
throws IOException
76
{
77
- Host.rabbitmqctl("eval 'application:set_env(rabbit, frame_max, 4096).'");
+ Host.rabbitmqctl("eval 'application:set_env(rabbit, frame_max, " + Integer.toString(AMQP.FRAME_MIN_SIZE) + ").'");
78
ConnectionFactory cf = new ConnectionFactory();
79
cf.getClientProperties().put("too_long", LongStringHelper.asLongString(new byte[AMQP.FRAME_MIN_SIZE]));
80
try {
0 commit comments