HBASE-11915 Document and test 0.94 -> 1.0.0 update -- ADDENDUM
This commit is contained in:
parent
84f3549d5e
commit
96f84594ee
|
@ -656,11 +656,11 @@ public abstract class FSUtils {
|
|||
if (s != null) s.close();
|
||||
} catch (IOException ignore) { }
|
||||
}
|
||||
LOG.debug("Created version file at " + rootdir.toString() + " with version=" + version);
|
||||
LOG.info("Created version file at " + rootdir.toString() + " with version=" + version);
|
||||
return;
|
||||
} catch (IOException e) {
|
||||
if (retries > 0) {
|
||||
LOG.warn("Unable to create version file at " + rootdir.toString() + ", retrying", e);
|
||||
LOG.debug("Unable to create version file at " + rootdir.toString() + ", retrying", e);
|
||||
fs.delete(versionFile, false);
|
||||
try {
|
||||
if (wait > 0) {
|
||||
|
|
Loading…
Reference in New Issue