Refactoring

This commit is contained in:
megala21 2017-10-04 21:06:52 +05:30
parent d8dbae712a
commit 605832c960

View File

@ -414,14 +414,12 @@ public class CarbonServerManagerExtension {
log.info("Execution data file non empty file size in KB : " + file.length() / 1024); log.info("Execution data file non empty file size in KB : " + file.length() / 1024);
break; break;
} else { } else {
try { try {
log.warn("Execution data file is empty file size in KB : " + file.length() / 1024); log.warn("Execution data file is empty file size in KB : " + file.length() / 1024);
Thread.sleep(500); Thread.sleep(500);
} catch (InterruptedException ignored) { } catch (InterruptedException ignored) {
log.warn("Sleep interrupted ", ignored); log.warn("Sleep interrupted ", ignored);
} }
} }
} }
} }