Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,10 @@ public void execute(ChangeEventSourceContext context, InformixPartition partitio
dispatcher.dispatchHeartbeatEvent(partition, offsetContext);

IfmxStreamRecord streamRecord = transactionEngine.getRecord();
if (streamRecord == null) {
LOGGER.debug(RECEIVED_GENERIC_RECORD, streamRecord, 0);
continue;
}

switch (streamRecord.getType()) {
case TRANSACTION_GROUP:
Expand Down Expand Up @@ -183,6 +187,10 @@ public void execute(ChangeEventSourceContext context, InformixPartition partitio
dispatcher.dispatchHeartbeatEvent(partition, offsetContext);

IfmxStreamRecord streamRecord = transactionEngine.getRecord();
if (streamRecord == null) {
LOGGER.debug(RECEIVED_GENERIC_RECORD, streamRecord, 0);
continue;
}

switch (streamRecord.getType()) {
case TRANSACTION_GROUP:
Expand Down