Skip to content
This repository was archived by the owner on Feb 18, 2026. It is now read-only.

Commit 795ee98

Browse files
authored
Re-add source_ prefix to archived source files (#140)
1 parent 29df35b commit 795ee98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gretel_trainer/relational/multi_table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -924,7 +924,7 @@ def _upload_sources_to_project(self) -> None:
924924
for table in self.relational_data.list_all_tables(Scope.ALL):
925925
source_path = Path(self.relational_data.get_table_source(table))
926926
filename = source_path.name
927-
tar.add(source_path, arcname=filename)
927+
tar.add(source_path, arcname=f"source_{filename}")
928928
self._artifact_collection.upload_source_archive(
929929
self._project, str(archive_path)
930930
)

0 commit comments

Comments
 (0)