-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
averemee
committed
Apr 19, 2024
1 parent
b0f3467
commit 28bd2da
Showing
2 changed files
with
78 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -609,7 +609,18 @@ public void run() { | |
xid, timestamp, lastScn); | ||
} | ||
if (useChronicleQueue) { | ||
transaction = new OraCdcTransactionChronicleQueue(processLobs, queuesRoot, xid); | ||
try { | ||
transaction = new OraCdcTransactionChronicleQueue(processLobs, queuesRoot, xid); | ||
} catch (Exception cqe) { | ||
LOGGER.error( | ||
"\n=====================\n" + | ||
"'{}' while initializing Chronicle Queue.\n" + | ||
"\tREF. https://github.com/OpenHFT/Chronicle-Queue/issues/1446\n" + | ||
"Please send errorstack below to [email protected]\n{}\n" + | ||
"=====================\n", | ||
cqe.getMessage(), ExceptionUtils.getExceptionStackTrace(cqe)); | ||
throw new ConnectException(cqe); | ||
} | ||
} else { | ||
transaction = new OraCdcTransactionArrayList(xid); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters