File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 106
106
}
107
107
108
108
# TelemetryDockerUp checks if the webapp container is in a running state. If it is it will send a successful event.
109
- # if after 10 minutes it hasn't succeeded, a failed event will be sent (or if the user terminates early, a failed event would
109
+ # if after 20 minutes it hasn't succeeded, a failed event will be sent (or if the user terminates early, a failed event would
110
110
# also be sent).
111
111
#
112
112
# Note this only checks if the webapp container is running, that doesn't actually mean the entire stack is up.
@@ -117,8 +117,8 @@ TelemetryDockerUp()
117
117
return
118
118
fi
119
119
120
- # for up to 600 seconds (10 minutes), check to see if the server services is in a running state
121
- end=$(( SECONDS+ 600 ))
120
+ # for up to 1200 seconds (20 minutes), check to see if the server services is in a running state
121
+ end=$(( SECONDS+ 1200 ))
122
122
while [ $SECONDS -lt $end ]; do
123
123
webappState=$( docker compose ps --all --format " {{.Service}}:{{.State}}" 2> /dev/null | grep server | cut -d " :" -f2 | xargs)
124
124
if [ " $webappState " = " running" ]; then
@@ -128,7 +128,7 @@ TelemetryDockerUp()
128
128
sleep 1
129
129
done
130
130
131
- TelemetrySend " failed" " install" " webapp was not running within 600 seconds"
131
+ TelemetrySend " failed" " install" " webapp was not running within 1200 seconds"
132
132
}
133
133
134
134
readonly telemetryKey=" kpYsVGLgxEqD5OuSZAQ9zWmdgBlyiaej"
You can’t perform that action at this time.
0 commit comments