Skip to content

Commit b21b0c1

Browse files
authored
Revert "Message about using --parallel, and how other CWL runners are available. (#1671)" (#1682)
This reverts commit 88b9cfe.
1 parent 88b9cfe commit b21b0c1

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

cwltool/executors.py

-19
Original file line numberDiff line numberDiff line change
@@ -191,15 +191,6 @@ def check_for_abstract_op(tool: CWLObjectType) -> None:
191191
return (self.final_output[0], self.final_status[0])
192192
return (None, "permanentFail")
193193

194-
def message_about_other_runners(self) -> None:
195-
_logger.info(
196-
"Need to grow beyond `cwltool` and scale up your workflows to run on a multi-node cluster, or in the cloud?"
197-
)
198-
_logger.info(
199-
"CWL workflows are portable and run on many commercial and open source platforms."
200-
)
201-
_logger.info("Visit https://www.commonwl.org/implementations/ to learn more.")
202-
203194

204195
class SingleJobExecutor(JobExecutor):
205196
"""Default single-threaded CWL reference executor."""
@@ -212,10 +203,6 @@ def run_jobs(
212203
runtime_context: RuntimeContext,
213204
) -> None:
214205

215-
_logger.info(
216-
"Using default serial job executor. Use `cwltool --parallel` to run multiple steps at a time."
217-
)
218-
219206
process_run_id = None # type: Optional[str]
220207

221208
# define provenance profile for single commandline tool
@@ -265,7 +252,6 @@ def run_jobs(
265252
else:
266253
logger.error("Workflow cannot make any more progress.")
267254
break
268-
self.message_about_other_runners()
269255
except (
270256
ValidationException,
271257
WorkflowException,
@@ -430,10 +416,6 @@ def run_jobs(
430416
runtime_context: RuntimeContext,
431417
) -> None:
432418

433-
_logger.info(
434-
"Using parallel job executor. Multiple steps will run at once as hardware resources permit."
435-
)
436-
437419
self.taskqueue = TaskQueue(
438420
threading.Lock(), psutil.cpu_count()
439421
) # type: TaskQueue
@@ -474,7 +456,6 @@ def run_jobs(
474456
finally:
475457
self.taskqueue.drain()
476458
self.taskqueue.join()
477-
self.message_about_other_runners()
478459

479460

480461
class NoopJobExecutor(JobExecutor):

0 commit comments

Comments
 (0)