Skip to content

Commit 7c080db

Browse files
Merge pull request #7537 from deutschebank/db-contrib/waltz-7523-proposed-flow-workflow-enhancements-v1.83.0
Db contrib/waltz 7523 proposed flow workflow enhancements v1.83.0
2 parents 535571b + 4e109b0 commit 7c080db

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

waltz-service/src/main/java/org/finos/waltz/service/proposed_flow_workflow/ProposedFlowWorkflowService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public class ProposedFlowWorkflowService {
7070
private static final String AUTO_APPROVAL_REASON = "Auto approved for external actor";
7171
private static final String ADMIN = "Admin";
7272
private static final String AUTO_APPROVE_SETTING_KEY = "feature.auto-approve-flow-for-external-actors";
73-
private static final String PENDING_FLOWS_TIME_OUT_THRESHOLD = "feature.data-flows-timeout-threshold";
73+
private static final String PENDING_FLOWS_TIME_OUT_THRESHOLD = "feature.data-flows-timeout-threshold-in-days";
7474

7575
private final EntityWorkflowService entityWorkflowService;
7676
private final ProposedFlowWorkflowPermissionService permissionService;
@@ -562,7 +562,7 @@ private long autoTimeoutPendingProposedFlows(int timeoutDays,
562562

563563
List<Long> proposedFlowIds = proposedFlowDao.findPendingFlowsOlderThanDays(timeoutDays);
564564

565-
LOG.info("Fetched pending flows for more than 30 days. countOfFlows={}", proposedFlowIds.size());
565+
LOG.info("Fetched pending flows for more than {} days. countOfFlows={}",timeoutDays, proposedFlowIds.size());
566566

567567
if (proposedFlowIds.isEmpty()) {
568568
return 0;

0 commit comments

Comments
 (0)