HADOOP-10647. String Format Exception in SwiftNativeFileSystemStore.java.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1600970 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
32a71b6f34
commit
d7f5d6795c
|
@ -180,6 +180,9 @@ Release 2.5.0 - UNRELEASED
|
||||||
|
|
||||||
HADOOP-10658. SSLFactory expects truststores being configured. (tucu via atm)
|
HADOOP-10658. SSLFactory expects truststores being configured. (tucu via atm)
|
||||||
|
|
||||||
|
HADOOP-10647. String Format Exception in SwiftNativeFileSystemStore.java.
|
||||||
|
(Gene Kim via stevel)
|
||||||
|
|
||||||
Release 2.4.1 - UNRELEASED
|
Release 2.4.1 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -927,7 +927,7 @@ public class SwiftNativeFileSystemStore {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (LOG.isDebugEnabled()) {
|
if (LOG.isDebugEnabled()) {
|
||||||
SwiftUtils.debug(LOG, SwiftUtils.fileStatsToString(statuses, "\n"));
|
SwiftUtils.debug(LOG, "%s", SwiftUtils.fileStatsToString(statuses, "\n"));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (filecount == 1 && swiftPath.equals(statuses[0].getPath())) {
|
if (filecount == 1 && swiftPath.equals(statuses[0].getPath())) {
|
||||||
|
|
Loading…
Reference in New Issue