DBZ-8102 Make ORA-26928 "Unable to communicate with XStream apply coordinator process" retriable

This commit is contained in:
Chris Cranford 2024-07-29 17:58:05 -04:00 committed by Jiri Pechanec
parent 7fc206bda6
commit e925bd23fc

View File

@ -198,8 +198,10 @@ private XStreamOut performAttachWithRetries(OracleConnection xsConnection, byte[
private boolean isAttachExceptionRetriable(StreamsException e) {
return e.getErrorCode() == 26653
|| e.getErrorCode() == 23656
|| e.getErrorCode() == 26928
|| e.getMessage().contains("did not start properly and is currently in state")
|| e.getMessage().contains("Timeout occurred while starting XStream process");
|| e.getMessage().contains("Timeout occurred while starting XStream process")
|| e.getMessage().contains("Unable to communicate with XStream apply coordinator process");
}
private byte[] convertScnToPosition(Scn scn) {