Skip to content

Commit e309568

Browse files
Merge pull request #281 from vikinghawk/e2e_binding_recovery_fix
remove e2e bindings for auto-delete exchanges
2 parents 971dbab + eecc139 commit e309568

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/rabbitmq/client/impl/recovery/AutorecoveringConnection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -805,7 +805,7 @@ void maybeDeleteRecordedAutoDeleteExchange(String exchange) {
805805
// last binding where this exchange is the source is gone, remove recorded exchange
806806
// if it is auto-deleted. See bug 26364.
807807
if((x != null) && x.isAutoDelete()) {
808-
this.recordedExchanges.remove(exchange);
808+
deleteRecordedExchange(exchange);
809809
}
810810
}
811811
}

0 commit comments

Comments
 (0)