Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog/133.fixed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixes issues where InfrahubClient was not properly configured for a branch when running the `infrahubctl transform` command.
2 changes: 1 addition & 1 deletion infrahub_sdk/ctl/cli_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@
transform_config = matched[0]

# Get client
client = initialize_client()
client = initialize_client(branch=branch)

Check warning on line 338 in infrahub_sdk/ctl/cli_commands.py

View check run for this annotation

Codecov / codecov/patch

infrahub_sdk/ctl/cli_commands.py#L338

Added line #L338 was not covered by tests

# Get python transform class instance
try:
Expand Down