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 66059b50d4 Remove extra closing tag
66059b50d4 is described below

commit 66059b50d46ab9a6c86b64d50efa5043df34d5c2
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Sun May 11 13:01:10 2025 +0200

    Remove extra closing tag
---
 scripts/transfer_utils.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/scripts/transfer_utils.py b/scripts/transfer_utils.py
index d427735bac..6729f0bdcb 100644
--- a/scripts/transfer_utils.py
+++ b/scripts/transfer_utils.py
@@ -96,7 +96,8 @@ class CommonTransferUtils:
             else:
                 self.copy(source, destination)
         Path(output_file.name).unlink(missing_ok=True)
-        console.print(f"{source}:[green] Sync completed to [/]{destination} 
[/]")
+        thread.join()
+        console.print(f"{source}:[green] Sync completed to [/]{destination}")
 
     @staticmethod
     def run_with_pool(func: Callable, args: Any, processes: int = 4):
@@ -119,6 +120,7 @@ class CommonTransferUtils:
                 text=True, check=True
             )
         Path(output_file.name).unlink(missing_ok=True)
+        thread.join()
         console.print(f"{source}[green] Copying completed to [/]{destination}")
 
     @staticmethod

Reply via email to