Skip to content

Commit

Permalink
#245 Automatically add only lazy jobs, not all transient jobs.
Browse files Browse the repository at this point in the history
  • Loading branch information
yruslan committed Feb 2, 2024
1 parent f329141 commit 6a00a06
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ object AppRunner {
throw new IllegalArgumentException(s"Non-existent or disabled jobs selected for execution. Output tables: ${notFoundJobs.mkString(", ")}")
}

jobs.filter(job => selectedTablesSet.contains(job.outputTable.name) || job.outputTable.format.isTransient)
jobs.filter(job => selectedTablesSet.contains(job.outputTable.name) || job.outputTable.format.isLazy)
}
}, state, "selecting jobs for execution")
}
Expand Down

0 comments on commit 6a00a06

Please sign in to comment.