Skip to content

Commit

Permalink
Merge pull request #87 from JenspederM/test/deploy-test-fail
Browse files Browse the repository at this point in the history
chore: add sanity check
  • Loading branch information
JenspederM authored Dec 28, 2024
2 parents 6868caa + c062c9a commit d2c528c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/kedro_databricks/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,8 @@ def log_deployed_resources(
job_host = f"{w.config.host}/jobs"
username = w.current_user.me().user_name.split("@")[0]
all_jobs = {job.settings.name: job for job in w.jobs.list()}
self.log.info(
f"{self._msg}: Found the following jobs\n\t{'\t\n'.join(all_jobs.keys())}"
)
job_names = "\t\n".join(all_jobs.keys())
self.log.info(f"{self._msg}: Found the following jobs\n\t{job_names}")
jobs = self._gather_user_jobs(all_jobs, pipelines, username, job_host)
for job in jobs:
if only_dev and not job.is_dev:
Expand Down

0 comments on commit d2c528c

Please sign in to comment.