Skip to content

Commit

Permalink
[fix][client] Fix topic list watcher fail log (apache#19733)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnonHxy authored Mar 10, 2023
1 parent da30b2e commit 9feb85b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ public void connectionOpened(ClientCnx cnx) {
cnx.channel().close();
return null;
}
log.warn("[{}][{}] Failed to subscribe to topic on {}", topic,
getHandlerName(), cnx.channel().remoteAddress());
log.warn("[{}][{}] Failed to create topic list watcher on {}",
topic, getHandlerName(), cnx.channel().remoteAddress());

if (e.getCause() instanceof PulsarClientException
&& PulsarClientException.isRetriableError(e.getCause())
Expand Down

0 comments on commit 9feb85b

Please sign in to comment.