mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 13:10:44 +00:00
CTLE-421: minor bug fixes from demo
This commit is contained in:
@ -319,8 +319,14 @@ public abstract class AbstractTableSyncTransformStep extends AbstractTransformSt
|
||||
continue;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////
|
||||
// if we received a record to store add to the output records //
|
||||
////////////////////////////////////////////////////////////////
|
||||
recordToStore = populateRecordToStore(runBackendStepInput, recordToStore, sourceRecord);
|
||||
runBackendStepOutput.addRecord(recordToStore);
|
||||
if(recordToStore != null)
|
||||
{
|
||||
runBackendStepOutput.addRecord(recordToStore);
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////
|
||||
|
Reference in New Issue
Block a user