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 5a3481e commit 53ea278Copy full SHA for 53ea278
src/main/java/com/rabbitmq/client/impl/recovery/AutorecoveringConnection.java
@@ -687,7 +687,7 @@ private void recoverTopology(final ExecutorService executor) {
687
recoverEntitiesAsynchronously(executor, Utility.copy(recordedBindings));
688
recoverEntitiesAsynchronously(executor, Utility.copy(consumers).values());
689
} catch (final Exception cause) {
690
- final String message = "Caught an exception while recovering toplogy: " + cause.getMessage();
+ final String message = "Caught an exception while recovering topology: " + cause.getMessage();
691
final TopologyRecoveryException e = new TopologyRecoveryException(message, cause);
692
getExceptionHandler().handleTopologyRecoveryException(delegate, null, e);
693
}
0 commit comments