Skip to content

Commit 9810cce

Browse files
author
Simon MacMullen
committed
Matthias points out that this is more logical...
1 parent 59765ef commit 9810cce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/src/com/rabbitmq/examples/PerfTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public static void main(String[] args) {
5858
long confirm = intArg(cmd, 'c', -1);
5959
boolean autoAck = cmd.hasOption('a');
6060
int multiAckEvery = intArg(cmd, 'A', 0);
61-
int channelPrefetch = intArg(cmd, 'G', 0);
61+
int channelPrefetch = intArg(cmd, 'Q', 0);
6262
int consumerPrefetch = intArg(cmd, 'q', 0);
6363
int minMsgSize = intArg(cmd, 's', 0);
6464
int timeLimit = intArg(cmd, 'z', 0);
@@ -146,7 +146,7 @@ private static Options getOptions() {
146146
options.addOption(new Option("a", "autoack", false,"auto ack"));
147147
options.addOption(new Option("A", "multiAckEvery", true, "multi ack every"));
148148
options.addOption(new Option("q", "qos", true, "consumer prefetch count"));
149-
options.addOption(new Option("G", "globalQos", true, "channel prefetch count"));
149+
options.addOption(new Option("Q", "globalQos", true, "channel prefetch count"));
150150
options.addOption(new Option("s", "size", true, "message size"));
151151
options.addOption(new Option("z", "time", true, "time limit"));
152152
options.addOption(new Option("C", "pmessages", true, "producer message count"));

0 commit comments

Comments
 (0)