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 8e21369 commit cc512f4Copy full SHA for cc512f4
tools/test_up.sh
@@ -289,6 +289,13 @@ if ! "$dsc" cmd start -c 2; then
289
echo "Failed repair test part 1, starting downstairs 2" >> "$fail_log"
290
echo
291
fi
292
+state=$("$dsc" cmd state -c 2)
293
+while [[ "$state" != "Running" ]]; do
294
+ echo "downstairs 2 not restarted yet, waiting"
295
+ sleep 5
296
+ state=$("$dsc" cmd state -c 2)
297
+done
298
+echo "Downstairs 2 restarted"
299
300
# Put a dump test in the middle of the repair test, so we
301
# can see both a mismatch and that dump works.
0 commit comments