Skip to content

Commit 4388d10

Browse files
committed
Fix log message
1 parent d8e7daf commit 4388d10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/rabbitmq/stream/impl/Client.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1141,7 +1141,7 @@ public long queryPublisherSequence(String publisherReference, String stream) {
11411141
request.block();
11421142
QueryPublisherSequenceResponse response = request.response.get();
11431143
if (!response.isOk()) {
1144-
LOGGER.info("Query offset failed with code {}", formatConstant(response.getResponseCode()));
1144+
LOGGER.info("Query publisher sequence failed with code {}", formatConstant(response.getResponseCode()));
11451145
}
11461146
return response.getSequence();
11471147
} catch (RuntimeException e) {

0 commit comments

Comments
 (0)