Skip to content
This repository was archived by the owner on Feb 20, 2026. It is now read-only.

Commit 0efc35f

Browse files
committed
chore: 修改脚本等待时间
1 parent 4f348d0 commit 0efc35f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/check_travellings_cn_project.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ jobs:
3232
python src/main.py -o ~/builds/target/output.txt -e ~/builds/target/error.txt -id sync_query
3333
- name: Check and Retry Error Status Domain
3434
run: |
35-
max_retries=20
35+
max_retries=24
3636
retries=0
3737
while [ -s ~/builds/target/error.txt ] && [ $retries -lt $max_retries ]; do
38-
echo "Sleeping for 600*$retries seconds before retrying"
39-
sleep $((600 * retries))
38+
echo "Sleeping for 60*$retries seconds before retrying"
39+
sleep $((60 * retries))
4040
echo "Retrying $retries+1 of $max_retries"
4141
mv ~/builds/target/error.txt ~/builds/temp/error.txt
4242
python src/main.py -i ~/builds/temp/error.txt -o ~/builds/target/output.txt -e ~/builds/target/error.txt -id sync_query

0 commit comments

Comments
 (0)