Skip to content

Commit 6a00a06

Browse files
committed
#245 Automatically add only lazy jobs, not all transient jobs.
1 parent f329141 commit 6a00a06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pramen/core/src/main/scala/za/co/absa/pramen/core/runner/AppRunner.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ object AppRunner {
202202
throw new IllegalArgumentException(s"Non-existent or disabled jobs selected for execution. Output tables: ${notFoundJobs.mkString(", ")}")
203203
}
204204

205-
jobs.filter(job => selectedTablesSet.contains(job.outputTable.name) || job.outputTable.format.isTransient)
205+
jobs.filter(job => selectedTablesSet.contains(job.outputTable.name) || job.outputTable.format.isLazy)
206206
}
207207
}, state, "selecting jobs for execution")
208208
}

0 commit comments

Comments
 (0)