Skip to content

Commit

Permalink
Update deploy.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rickyschools committed May 8, 2024
1 parent d55cf86 commit dbdc804
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dltflow/cli/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,9 @@ def deploy_py_dlt2(deployment_file: str, environment: str, as_individual: bool):
deployment_config = ConfigReader(
pathlib.Path(deployment_file).absolute()
).get_config()
print(deployment_config.dict(exclude_none=True))
env_config = deployment_config.get_environment(environment)
print(env_config.dict(exclude_none=True))
for workflow in env_config.payload.workflows:
items = workflow.tasks.get_items()
deps = [
Expand Down

0 comments on commit dbdc804

Please sign in to comment.