Skip to content

Commit

Permalink
payer fsp fix (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
apurbraj authored Mar 13, 2024
1 parent 5cc9979 commit 3820de2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public List<Object> processWorkflowInstance(DocumentContext recordDocument, Stri
logger.debug("found {} constant transformers for flow start {}", constantTransformers.size(), bpmn);
} else if ("ELEMENT_COMPLETED".equals(intent)) {
logger.info("Inside ELEMENT_COMPLETED");
if (!config.get().getName().equalsIgnoreCase("bulk_processor")) {
if (!config.get().getName().contains("bulk_processor")) {
logger.info("Inside if condition PROCESS_INSTANCE, json {}", recordType);
inflightBatchManager.checkWorkerIdAndUpdateTransferData(batch, workflowInstanceKey, timestamp);
}
Expand Down

0 comments on commit 3820de2

Please sign in to comment.