You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2019/07/13 17:02:33 UTC

[arrow] 38/43: ARROW-5937: [Release] Stop parallel binary upload

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

wesm pushed a commit to branch maint-0.14.x
in repository https://gitbox.apache.org/repos/asf/arrow.git

commit d8f37ad7e810e7fd028dd9a82f662a7eaa2388a1
Author: Sutou Kouhei <ko...@clear-code.com>
AuthorDate: Sat Jul 13 09:46:22 2019 +0900

    ARROW-5937: [Release] Stop parallel binary upload
    
    It's fragile.
    
    Author: Sutou Kouhei <ko...@clear-code.com>
    
    Closes #4868 from kou/release-post-binary-stop-parallel and squashes the following commits:
    
    3b86cce8f <Sutou Kouhei>  Stop parallel binary upload
---
 dev/release/post-02-binary.sh | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/dev/release/post-02-binary.sh b/dev/release/post-02-binary.sh
index cdff1db..4e1e34f 100755
--- a/dev/release/post-02-binary.sh
+++ b/dev/release/post-02-binary.sh
@@ -100,9 +100,8 @@ download_files() {
       --fail \
       --location \
       --output ${file} \
-      https://dl.bintray.com/${BINTRAY_REPOSITORY}/${file} &
+      https://dl.bintray.com/${BINTRAY_REPOSITORY}/${file}
   done
-  wait
 }
 
 delete_file() {
@@ -152,9 +151,8 @@ for target in debian ubuntu centos python; do
     mv ${version}-rc${rc} ${version}
   fi
   for file in $(find . -type f); do
-    upload_file ${version} ${target} ${file} &
+    upload_file ${version} ${target} ${file}
   done
-  wait
   popd
   popd
   rm -rf ${tmp_dir}