Skip to content

Commit 33fb03d

Browse files
authored
Fix typo in timeout error message (Azure#46621)
1 parent d45b1f8 commit 33fb03d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/core/azure-core-amqp/src/main/java/com/azure/core/amqp/implementation/ReactorConnection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public ReactorConnection(String connectionId, ConnectionOptions connectionOption
152152
.next()
153153
.timeout(operationTimeout, Mono.error(() -> {
154154
AmqpException exception = new AmqpException(true, TIMEOUT_ERROR,
155-
String.format("Connection '%s' not active within the timout: %s.", connectionId,
155+
String.format("Connection '%s' not active within the timeout: %s.", connectionId,
156156
operationTimeout),
157157
handler.getErrorContext());
158158
if (!isV2) {

0 commit comments

Comments
 (0)