HBASE-11915 Document and test 0.94 -> 1.0.0 update -- ADDENDUM
This commit is contained in:
parent
1452b2b01f
commit
46e4bffc2c
|
@ -653,11 +653,11 @@ public abstract class FSUtils {
|
||||||
if (s != null) s.close();
|
if (s != null) s.close();
|
||||||
} catch (IOException ignore) { }
|
} 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;
|
return;
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
if (retries > 0) {
|
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);
|
fs.delete(versionFile, false);
|
||||||
try {
|
try {
|
||||||
if (wait > 0) {
|
if (wait > 0) {
|
||||||
|
|
Loading…
Reference in New Issue