File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/com/rabbitmq/client/impl Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -394,7 +394,7 @@ private void releaseChannel() {
394394 }
395395 if (callback != null ) {
396396 try {
397- this .dispatcher .handleCancel (consumerTag , callback );
397+ this .dispatcher .handleCancel (callback , consumerTag );
398398 } catch (Throwable ex ) {
399399 getConnection ().getExceptionHandler ().handleConsumerException (this ,
400400 ex ,
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ public void run() {
100100 });
101101 }
102102
103- public void handleCancel (final String consumerTag , final Consumer delegate ) {
103+ public void handleCancel (final Consumer delegate , final String consumerTag ) {
104104 executeUnlessShuttingDown (
105105 new Runnable () {
106106 public void run () {
You can’t perform that action at this time.
0 commit comments