Skip to content

Commit

Permalink
restore exception handling #949 #1005 (#1057)
Browse files Browse the repository at this point in the history
  • Loading branch information
keith-turner committed Mar 26, 2019
1 parent 07d6346 commit e93cb7a
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,12 @@ public void run() {
}
}

try {
nextLog.offer(t, 12, TimeUnit.HOURS);
} catch (InterruptedException ex) {
// ignore
}

continue;
}

Expand Down Expand Up @@ -332,6 +338,12 @@ public void run() {
log.error("Failed to close WAL that failed to open: " + fileName, e);
}

try {
nextLog.offer(t, 12, TimeUnit.HOURS);
} catch (InterruptedException ex) {
// ignore
}

continue;
}

Expand Down

0 comments on commit e93cb7a

Please sign in to comment.