HDFS-14094. [SBN read] Fix the order of logging arguments in ObserverReadProxyProvider. Contributed by Ayush Saxena.

This commit is contained in:
Konstantin V Shvachko 2018-11-25 12:46:28 -08:00 committed by Chen Liang
parent 52d066a9d3
commit 3518767ce7
1 changed files with 1 additions and 1 deletions

View File

@ -302,7 +302,7 @@ public class ObserverReadProxyProvider<T extends ClientProtocol>
// If we get here, it means all observers have failed. // If we get here, it means all observers have failed.
LOG.warn("{} observers have failed for read request {}; also found " + LOG.warn("{} observers have failed for read request {}; also found " +
"{} standby and {} active. Falling back to active.", "{} standby and {} active. Falling back to active.",
failedObserverCount, standbyCount, activeCount, method.getName()); failedObserverCount, method.getName(), standbyCount, activeCount);
} }
// Either all observers have failed, or that it is a write request. // Either all observers have failed, or that it is a write request.