aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2024-10-02 15:01:54 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2024-10-02 15:01:54 -0400
commitf0ba8cd378a460f927644e41f49be95d0e956f81 (patch)
treeeff3b2ec3dcc31126041529c8e00a714997f2d7b
parentb041e8216c05940f5b3676ef5c7e0ce2b4441bc8 (diff)
downloadstasis-split-delivery-code.tar.gz
Rename argument --parallel-fail-fast to --fail-fastsplit-delivery-code
* All tasks are executed by the same machinery under the hood. So have them all react the same way.
-rw-r--r--src/stasis_main.c6
1 files changed, 3 insertions, 3 deletions
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: