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 8ea2677 commit 5674505Copy full SHA for 5674505
src/main/java/com/rabbitmq/client/amqp/impl/AmqpConnection.java
@@ -537,6 +537,13 @@ private void recoverPublishers() throws InterruptedException {
537
publisher.state(OPEN);
538
LOGGER.debug(
539
"Recovered publisher {} (address '{}')", publisher.id(), publisher.address());
540
+ } catch (AmqpException.AmqpConnectionException ex) {
541
+ LOGGER.warn(
542
+ "Connection error while trying to recover publisher {} (address '{}'), restarting recovery",
543
+ publisher.id(),
544
+ publisher.address(),
545
+ ex);
546
+ throw ex;
547
} catch (Exception ex) {
548
LOGGER.warn(
549
"Error while trying to recover publisher {} (address '{}')",
0 commit comments