This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow-site-archive.git


The following commit(s) were added to refs/heads/main by this push:
     new 8fe0586a37 Better diagnostics for sorting
8fe0586a37 is described below

commit 8fe0586a37ee581badc652bc4b2984099315aa40
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Sun May 11 13:50:28 2025 +0200

    Better diagnostics for sorting
---
 scripts/s3_to_github.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/scripts/s3_to_github.py b/scripts/s3_to_github.py
index 2ec9e878a8..0eac7ffb10 100644
--- a/scripts/s3_to_github.py
+++ b/scripts/s3_to_github.py
@@ -59,7 +59,9 @@ class S3TOGithub(CommonTransferUtils):
             # we want to store the files in the github under local_path
             destination = self.local_path + pref.replace(remote_prefix, "")
             pool_args.append((source_bucket_path, destination))
+        console.print("[blue]Sorting[/]", pool_args)
         pool_args = sort_priority_tuples(pool_args)
+        console.print("[blue]Sorted args[/]", pool_args)
         self.run_with_pool(self.sync, pool_args, processes=processes)
 
 

Reply via email to