Restore default value of --on-error to 'continue' refs #14440
authorPeter Amstutz <pamstutz@veritasgenetics.com>
Tue, 27 Nov 2018 20:54:37 +0000 (15:54 -0500)
committerPeter Amstutz <pamstutz@veritasgenetics.com>
Tue, 27 Nov 2018 20:54:37 +0000 (15:54 -0500)
Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <pamstutz@veritasgenetics.com>

doc/user/cwl/cwl-run-options.html.textile.liquid
sdk/cwl/arvados_cwl/__init__.py

index a7a634f370a4e44a37a76a9c7ddd4fb69c6ee391..27970f440a74ed1e89342b394d28929858c300c0 100644 (file)
@@ -55,7 +55,7 @@ table(table table-bordered table-condensed).
 |==--submit-request-uuid== UUID|Update and commit to supplied container request instead of creating a new one (containers API only).|
 |==--submit-runner-cluster== CLUSTER_ID|Submit workflow runner to a remote cluster (containers API only)|
 |==--name NAME==|Name to use for workflow execution instance.|
-|==--on-error== {stop,continue}|Desired workflow behavior when a step fails.  One of 'stop' (do not submit any more steps) or 'continue' (may submit other steps that are not downstream from the error). Default is 'stop'.|
+|==--on-error== {stop,continue}|Desired workflow behavior when a step fails.  One of 'stop' (do not submit any more steps) or 'continue' (may submit other steps that are not downstream from the error). Default is 'continue'.|
 |==--enable-dev==|Enable loading and running development versions of CWL spec.|
 |==--storage-classes== STORAGE_CLASSES|Specify comma separated list of storage classes to be used when saving workflow output to Keep.|
 |==--intermediate-output-ttl== N|If N > 0, intermediate output collections will be trashed N seconds after creation. Default is 0 (don't trash).|
index c0915c06b18badce266b2958220e70888b2fcfb3..9b814f534c11af95aa59b77cdb3eaaa737866195 100644 (file)
@@ -165,8 +165,8 @@ def arg_parser():  # type: () -> argparse.ArgumentParser
 
     parser.add_argument("--on-error",
                         help="Desired workflow behavior when a step fails.  One of 'stop' (do not submit any more steps) or "
-                        "'continue' (may submit other steps that are not downstream from the error). Default is 'stop'.",
-                        default="stop", choices=("stop", "continue"))
+                        "'continue' (may submit other steps that are not downstream from the error). Default is 'continue'.",
+                        default="continue", choices=("stop", "continue"))
 
     parser.add_argument("--enable-dev", action="store_true",
                         help="Enable loading and running development versions "