We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
int
JobsCrawler
1 parent 487fa2f commit 05bca87Copy full SHA for 05bca87
src/databricks/labs/ucx/contexts/application.py
@@ -283,7 +283,7 @@ def jobs_crawler(self) -> JobsCrawler:
283
self.sql_backend,
284
self.inventory_database,
285
include_job_ids=self.config.include_job_ids,
286
- exclude_job_ids=list(self.install_state.jobs.values()),
+ exclude_job_ids=[int(job_id) for job_id in self.install_state.jobs.values()],
287
)
288
289
@cached_property
0 commit comments