Skip to content

Commit cf7fca2

Browse files
committed
more debug prints
1 parent 6981bca commit cf7fca2

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/gardenlinux/github/__main__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -486,10 +486,13 @@ def download_metadata_file(s3_artifacts, cname, artifacts_dir):
486486
"""
487487
print(f'YTDBG // {s3_artifacts=} | {cname=} | {artifacts_dir=}')
488488
_release_objects = s3_artifacts._bucket.objects.filter(Prefix=f"meta/singles/{cname}")
489+
for o in _release_objects:
490+
print(f'YTDBG // {o.bucket_name=} | {o.key=}')
489491
print(f'YTDBG // {_release_objects=}')
490492
release_object = list(
491493
s3_artifacts._bucket.objects.filter(Prefix=f"meta/singles/{cname}")
492494
)[0]
495+
print(f'YTBDG // {release_object.bucket_name=} | {release_object.key=}')
493496
print(f'YTDBG // {release_object =}')
494497
s3_artifacts._bucket.download_file(
495498
release_object.key, artifacts_dir.joinpath(f"{cname}.s3_metadata.yaml")

0 commit comments

Comments
 (0)