HBASE-25992 Addendum add missing catch WALEntryFilterRetryableException back
This commit is contained in:
parent
41a68325c2
commit
12d707c880
|
@ -155,7 +155,7 @@ class ReplicationSourceWALReader extends Thread {
|
|||
entryBatchQueue.put(batch);
|
||||
sleepMultiplier = 1;
|
||||
}
|
||||
} catch (IOException e) { // stream related
|
||||
} catch (WALEntryFilterRetryableException | IOException e) { // stream related
|
||||
if (!handleEofException(e, batch)) {
|
||||
LOG.warn("Failed to read stream of replication entries", e);
|
||||
if (sleepMultiplier < maxRetriesMultiplier) {
|
||||
|
|
Loading…
Reference in New Issue