Skip to content

Commit

Permalink
common-workflow-languageGH-172: State the version of cwltool being used
Browse files Browse the repository at this point in the history
  • Loading branch information
oceenachi authored and kinow committed Oct 1, 2024
1 parent b1a77b9 commit 76abc83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,7 @@ public QueuedWorkflow createQueuedWorkflow(GitDetails gitInfo)
public void retryCwltool(QueuedWorkflow queuedWorkflow) {
queuedWorkflow.setMessage(null);
queuedWorkflow.setCwltoolStatus(CWLToolStatus.RUNNING);
queuedWorkflow.setCwltoolVersion(queuedWorkflow.getTempRepresentation().getCwltoolVersion());
queuedWorkflowRepository.save(queuedWorkflow);
try {
cwlToolRunner.createWorkflowFromQueued(queuedWorkflow);
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/loading.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ <h2 id="loadingHeader">Validating workflow <span th:text="${queued.tempRepresent
(excluding subworkflows)
</p>
<div id="cwltooldetails" class="alert alert-danger">
<p><strong>Error:</strong> cwltool version <span th:text="${queued.cwltoolVersion}">versionhere</span> failed to run on this workflow:</p>
<p><strong>Error:</strong> cwltool version <span th:text="${queued.cwltoolVersion}"></span> failed to run on this workflow:</p>
<pre id="errorMsg" class="text-left">Sample Error, tool failed initialisation</pre>
</div>
<div class="loadingWorkflowContainer">
Expand Down

0 comments on commit 76abc83

Please sign in to comment.