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 6bb5fcb commit 0cec539Copy full SHA for 0cec539
src/main/java/com/rabbitmq/client/impl/recovery/AutorecoveringConnection.java
@@ -681,7 +681,7 @@ private void recoverTopology(final ExecutorService executor) {
681
recoverEntitiesAsynchronously(executor, Utility.copy(recordedBindings));
682
recoverEntitiesAsynchronously(executor, Utility.copy(consumers).values());
683
} catch (final Exception cause) {
684
- final String message = "Caught an exception while recovering toplogy: " + cause.getMessage();
+ final String message = "Caught an exception while recovering topology: " + cause.getMessage();
685
final TopologyRecoveryException e = new TopologyRecoveryException(message, cause);
686
getExceptionHandler().handleTopologyRecoveryException(delegate, null, e);
687
}
0 commit comments