Skip to content

Commit

Permalink
move _upload_with_artifact changes
Browse files Browse the repository at this point in the history
  • Loading branch information
korgan00 committed Oct 17, 2024
1 parent 92ac23b commit 706eead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/qiskit_serverless/core/clients/serverless_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ def _upload_with_artifact(
)

try:
with tarfile.open(artifact_file_path, "w") as tar:
with tarfile.open(artifact_file_path, "w", dereference=True) as tar:
for filename in os.listdir(program.working_dir):
fpath = os.path.join(program.working_dir, filename)
tar.add(fpath, arcname=filename)
Expand Down

0 comments on commit 706eead

Please sign in to comment.