Skip to content

Commit 26af0ca

Browse files
committed
Increase wait timeout for bintray to 20 min
Closes gh-13947
1 parent a023bd0 commit 26af0ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci/scripts/promote.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ if [[ $RELEASE_TYPE = "RELEASE" ]]; then
4646

4747
echo "Waiting for artifacts to be published"
4848
ARTIFACTS_PUBLISHED=false
49-
WAIT_TIME=5
49+
WAIT_TIME=10
5050
COUNTER=0
51-
while [ $ARTIFACTS_PUBLISHED == "false" ] && [ $COUNTER -lt 60 ]; do
51+
while [ $ARTIFACTS_PUBLISHED == "false" ] && [ $COUNTER -lt 120 ]; do
5252
result=$( curl -s https://api.bintray.com/packages/"${BINTRAY_SUBJECT}"/"${BINTRAY_REPO}"/"${groupId}" )
5353
versions=$( echo "$result" | jq -r '.versions' )
5454
exists=$( echo "$versions" | grep "$version" -o || true )

0 commit comments

Comments
 (0)