From c7e05316c4c34e769f1fbecb0d918a6b2ee60fc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20V=C3=A1rady?= Date: Thu, 17 Oct 2024 18:44:50 +0200 Subject: [PATCH] test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: László Várady --- .../remote_storage_synchronizer/s3_bucket_synchronizer.py | 1 + 1 file changed, 1 insertion(+) diff --git a/packaging/package-indexer/remote_storage_synchronizer/s3_bucket_synchronizer.py b/packaging/package-indexer/remote_storage_synchronizer/s3_bucket_synchronizer.py index 9e4eb3195..1e2b19893 100644 --- a/packaging/package-indexer/remote_storage_synchronizer/s3_bucket_synchronizer.py +++ b/packaging/package-indexer/remote_storage_synchronizer/s3_bucket_synchronizer.py @@ -107,6 +107,7 @@ def _list_remote_files(self) -> List[Dict[str, Any]]: try: for obj in response.get("Contents", []): objects.append(obj) + print("--------------------------------__" + str(obj)) if not response["IsTruncated"]: break pagination_options = {"Marker": response["Contents"][-1]["Key"]}