This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-java.git
The following commit(s) were added to refs/heads/main by this push:
new b933d2eb GH-588: [Release] Increase wait interval in
`dev/release/release_rc.sh` (#589)
b933d2eb is described below
commit b933d2ebebca11b4e22fe78b73f16173fc550a40
Author: Sutou Kouhei <[email protected]>
AuthorDate: Thu Feb 6 09:55:42 2025 +0900
GH-588: [Release] Increase wait interval in `dev/release/release_rc.sh`
(#589)
Fixes GH-588.
`release.yml` takes at least 30min now. So 60s wait interval is too
short. We can use longer interval to avoid needless API requests.
---
dev/release/release_rc.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev/release/release_rc.sh b/dev/release/release_rc.sh
index 13753764..b0107dce 100755
--- a/dev/release/release_rc.sh
+++ b/dev/release/release_rc.sh
@@ -109,13 +109,13 @@ if [ "${RELEASE_SIGN}" -gt 0 ]; then
if [ -n "${run_id}" ]; then
break
fi
- sleep 60
+ sleep 600
done
echo "Found GitHub Actions workflow with ID: ${run_id}"
gh run watch \
--exit-status "${run_id}" \
- --interval 60 \
+ --interval 600 \
--repo "${repository}"
echo "Downloading artifacts from GitHub Releases"