Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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