Skip to content

Commit

Permalink
Fix null value for appStateCcw
Browse files Browse the repository at this point in the history
  • Loading branch information
dondevun committed Dec 16, 2024
1 parent 9a6f719 commit ab6b9f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public PipelineJobOutcome call() throws Exception {
*/
Long callBackfillService() {
SamhsaBackfillService backfillService =
SamhsaBackfillService.createBackfillService(null, appStateRda, batchSize);
SamhsaBackfillService.createBackfillService(appStateCcw, appStateRda, batchSize);
Long processedCount = backfillService.startBackFill(appStateCcw != null, appStateRda != null);
return processedCount;
}
Expand Down

0 comments on commit ab6b9f7

Please sign in to comment.