This is an automated email from the ASF dual-hosted git repository.

mmerli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new ebde4dc  Correct error:the number of {} is different to arguments 
count. (#4570)
ebde4dc is described below

commit ebde4dcb5d15a95741cf9e2328e0b80781378293
Author: yuliangwan <[email protected]>
AuthorDate: Thu Jun 20 23:30:04 2019 +0800

    Correct error:the number of {} is different to arguments count. (#4570)
---
 .../src/main/java/org/apache/pulsar/broker/web/PulsarWebResource.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/pulsar-broker/src/main/java/org/apache/pulsar/broker/web/PulsarWebResource.java
 
b/pulsar-broker/src/main/java/org/apache/pulsar/broker/web/PulsarWebResource.java
index a03849d..d1218eb 100644
--- 
a/pulsar-broker/src/main/java/org/apache/pulsar/broker/web/PulsarWebResource.java
+++ 
b/pulsar-broker/src/main/java/org/apache/pulsar/broker/web/PulsarWebResource.java
@@ -619,7 +619,7 @@ public abstract class PulsarWebResource {
                 URI redirect = getRedirectionUrl(peerClusterData);
                 // redirect to the cluster requested
                 if (log.isDebugEnabled()) {
-                    log.debug("[{}] Redirecting the rest call to {}: 
cluster={}", redirect, peerClusterData);
+                    log.debug("[{}] Redirecting the rest call to {}: 
cluster={}", clientAppId(),redirect, peerClusterData);
 
                 }
                 throw new 
WebApplicationException(Response.temporaryRedirect(redirect).build());

Reply via email to