We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 916c74d commit aeb9c52Copy full SHA for aeb9c52
scaletest/templates/scaletest-runner/scripts/run.sh
@@ -14,7 +14,11 @@ set_status Running
14
15
start_phase "Creating workspaces"
16
if [[ ${SCALETEST_PARAM_SKIP_CREATE_WORKSPACES} == 0 ]]; then
17
+ # Note that we allow up to 5 failures to bring up the workspace, since
18
+ # we're creating a lot of workspaces at once and some of them may fail
19
+ # due to network issues or other transient errors.
20
coder exp scaletest create-workspaces \
21
+ --retry 5 \
22
--count "${SCALETEST_PARAM_NUM_WORKSPACES}" \
23
--template "${SCALETEST_PARAM_TEMPLATE}" \
24
--concurrency "${SCALETEST_PARAM_CREATE_CONCURRENCY}" \
0 commit comments