HDFS-15197. [SBN read] Change ObserverRetryOnActiveException log to debug. Contributed by Chen Liang.

This commit is contained in:
Ayush Saxena 2020-03-15 16:30:39 +05:30
parent 8a7c54995a
commit 74780c22eb

View File

@ -471,7 +471,7 @@ public Object invoke(Object proxy, final Method method, final Object[] args)
Exception unwrapped = re.unwrapRemoteException( Exception unwrapped = re.unwrapRemoteException(
ObserverRetryOnActiveException.class); ObserverRetryOnActiveException.class);
if (unwrapped instanceof ObserverRetryOnActiveException) { if (unwrapped instanceof ObserverRetryOnActiveException) {
LOG.info("Encountered ObserverRetryOnActiveException from {}." + LOG.debug("Encountered ObserverRetryOnActiveException from {}." +
" Retry active namenode directly.", current.proxyInfo); " Retry active namenode directly.", current.proxyInfo);
break; break;
} }