Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

increase the upper limit of testing time #1526

Merged
merged 2 commits into from
Oct 31, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/_inc/run_services.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ PROJECT_DIR="$(dirname "$0")/.."
BIN="${PROJECT_DIR}/bin"

start_tidb() {
echo "+ Waiting for TiDB start, for at most 10 min..."
echo "+ Waiting for TiDB start, for at most 15 min..."

rm -rf $INTEGRATION_LOG_PATH
TIDB_VERSION=${1:-latest}
Expand All @@ -30,7 +30,7 @@ ensure_tidb() {
i=1
while ! grep "TiDB Playground Cluster is started" $INTEGRATION_LOG_PATH; do
i=$((i+1))
if [ "$i" -gt 60 ]; then
if [ "$i" -gt 90 ]; then
echo 'Failed to start TiDB'
return 1
fi
Expand Down
Loading