@@ -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