aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2026-01-20 09:23:03 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2026-01-20 09:23:03 -0500
commitdc226b1a5c0afbe55b7975df7a358a2b74c8e722 (patch)
tree35483964c46b818eeaaa22226e360d16747a0355
parent9c452eedaa874773d0b302648373d670a3887a79 (diff)
downloadstasis-dc226b1a5c0afbe55b7975df7a358a2b74c8e722.tar.gz
Update README.mdtimeout-in-test-block
* Reword timeout description * Indicate default value
-rw-r--r--README.md2
-rw-r--r--src/cli/stasis/args.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index c1a490d..3459eae 100644
--- a/README.md
+++ b/README.md
@@ -160,7 +160,7 @@ stasis mydelivery.ini
| --unbuffered | -U | Disable line buffering |
| --update-base | n/a | Update conda installation prior to STATIS environment creation |
| --fail-fast | n/a | On test error, terminate all tasks |
-| --task-timeout ARG | n/a | Terminate task after timeout is reached (#s, #m, #h) |
+| --task-timeout ARG | n/a | Terminate task after timeout period (fmt: n[hms], default: 0s) |
| --overwrite | n/a | Overwrite an existing release |
| --no-docker | n/a | Do not build docker images |
| --no-artifactory | n/a | Do not upload artifacts to Artifactory |
diff --git a/src/cli/stasis/args.c b/src/cli/stasis/args.c
index 172981a..cb0f408 100644
--- a/src/cli/stasis/args.c
+++ b/src/cli/stasis/args.c
@@ -38,7 +38,7 @@ const char *long_options_help[] = {
"Disable line buffering",
"Update conda installation prior to STASIS environment creation",
"On error, immediately terminate all tasks",
- "Terminate task after timeout is reached (#s, #m, #h)",
+ "Terminate task after timeout period (fmt: n[hms], default: 0s)",
"Overwrite an existing release",
"Do not build docker images",
"Do not upload artifacts to Artifactory",