浏览代码

HDDS-1954. StackOverflowError in OzoneClientInvocationHandler

Signed-off-by: Anu Engineer <aengineer@apache.org>
Doroszlai, Attila 5 年之前
父节点
当前提交
46d61913ff

+ 1 - 1
hadoop-ozone/client/src/main/java/org/apache/hadoop/ozone/client/OzoneClientInvocationHandler.java

@@ -48,7 +48,7 @@ public class OzoneClientInvocationHandler implements InvocationHandler {
   @Override
   @Override
   public Object invoke(Object proxy, Method method, Object[] args)
   public Object invoke(Object proxy, Method method, Object[] args)
       throws Throwable {
       throws Throwable {
-    LOG.trace("Invoking method {} on proxy {}", method, proxy);
+    LOG.trace("Invoking method {} on target {}", method, target);
     try {
     try {
       long startTime = Time.monotonicNow();
       long startTime = Time.monotonicNow();
       Object result = method.invoke(target, args);
       Object result = method.invoke(target, args);