HDDS-1954. StackOverflowError in OzoneClientInvocationHandler

Signed-off-by: Anu Engineer <aengineer@apache.org>
This commit is contained in:
Doroszlai, Attila 2019-08-12 21:43:00 +02:00 committed by Anu Engineer
parent c801f7a26c
commit 46d61913ff

View File

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