Skip to content

Commit 733261f

Browse files
oceenachikinow
authored andcommitted
GH-172: State the version of cwltool being used
1 parent b1a77b9 commit 733261f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/main/java/org/commonwl/view/workflow/WorkflowService.java

+1
Original file line numberDiff line numberDiff line change
@@ -410,6 +410,7 @@ public QueuedWorkflow createQueuedWorkflow(GitDetails gitInfo)
410410
public void retryCwltool(QueuedWorkflow queuedWorkflow) {
411411
queuedWorkflow.setMessage(null);
412412
queuedWorkflow.setCwltoolStatus(CWLToolStatus.RUNNING);
413+
queuedWorkflow.setCwltoolVersion(queuedWorkflow.getCwltoolVersion());
413414
queuedWorkflowRepository.save(queuedWorkflow);
414415
try {
415416
cwlToolRunner.createWorkflowFromQueued(queuedWorkflow);

src/main/resources/templates/loading.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ <h2 id="loadingHeader">Validating workflow <span th:text="${queued.tempRepresent
5050
(excluding subworkflows)
5151
</p>
5252
<div id="cwltooldetails" class="alert alert-danger">
53-
<p><strong>Error:</strong> cwltool version <span th:text="${queued.cwltoolVersion}">versionhere</span> failed to run on this workflow:</p>
53+
<p><strong>Error:</strong> cwltool version <span th:text="${queued.cwltoolVersion}"></span> failed to run on this workflow:</p>
5454
<pre id="errorMsg" class="text-left">Sample Error, tool failed initialisation</pre>
5555
</div>
5656
<div class="loadingWorkflowContainer">

0 commit comments

Comments
 (0)