From f0ba8cd378a460f927644e41f49be95d0e956f81 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 2 Oct 2024 15:01:54 -0400 Subject: Rename argument --parallel-fail-fast to --fail-fast * All tasks are executed by the same machinery under the hood. So have them all react the same way. --- src/stasis_main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/stasis_main.c b/src/stasis_main.c index 47579a9..b5d43e3 100644 --- a/src/stasis_main.c +++ b/src/stasis_main.c @@ -27,7 +27,7 @@ static struct option long_options[] = { {"verbose", no_argument, 0, 'v'}, {"unbuffered", no_argument, 0, 'U'}, {"update-base", no_argument, 0, OPT_ALWAYS_UPDATE_BASE}, - {"parallel-fail-fast", no_argument, 0, OPT_PARALLEL_FAIL_FAST}, + {"fail-fast", no_argument, 0, OPT_FAIL_FAST}, {"overwrite", no_argument, 0, OPT_OVERWRITE}, {"no-docker", no_argument, 0, OPT_NO_DOCKER}, {"no-artifactory", no_argument, 0, OPT_NO_ARTIFACTORY}, @@ -49,7 +49,7 @@ const char *long_options_help[] = { "Increase output verbosity", "Disable line buffering", "Update conda installation prior to STASIS environment creation", - "On test error, terminate all concurrent tasks", + "On error, immediately terminate all tasks", "Overwrite an existing release", "Do not build docker images", "Do not upload artifacts to Artifactory", @@ -267,7 +267,7 @@ int main(int argc, char *argv[]) { case OPT_ALWAYS_UPDATE_BASE: globals.always_update_base_environment = true; break; - case OPT_PARALLEL_FAIL_FAST: + case OPT_FAIL_FAST: globals.parallel_fail_fast = true; break; case OPT_POOL_STATUS_INTERVAL: -- cgit