Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion python/tk_multi_loader/flowam/create.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def get_template_source_path(template: objects.FlowAsset) -> str:
Full path to template file in blob storage.
"""
revision = template.get_latest_revision()
revision.fetch(component_purpose=globals.SOURCE_PURPOSE)
revision.fetch(component_purpose=globals.SOURCE_PURPOSE, fetch_dependencies=True)
return revision.get_storage_component_path(component_purpose=globals.SOURCE_PURPOSE)


Expand Down
4 changes: 2 additions & 2 deletions python/tk_multi_loader/flowam/reference.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def reference_revision(revision_id: str) -> str:
raise CreateReferenceError(input_id=revision_id, details=msg) from exc

# Fetch source component of revision
revision.fetch(component_purpose=globals.SOURCE_PURPOSE)
revision.fetch(component_purpose=globals.SOURCE_PURPOSE, fetch_dependencies=True)

# Get path to source path of revision in local storage
file_path = revision.get_storage_component_path(
Expand Down Expand Up @@ -121,7 +121,7 @@ def copy_reference_link(revision_id: str) -> str:
raise CreateReferenceError(input_id=revision_id, details=msg) from exc

# Fetch source component of revision
revision.fetch(component_purpose=globals.SOURCE_PURPOSE)
revision.fetch(component_purpose=globals.SOURCE_PURPOSE, fetch_dependencies=True)

# Get path to source path of revision in local storage
file_path = revision.get_storage_component_path(
Expand Down