Skip to content

Commit 928e15d

Browse files
authored
Merge branch 'main' into feat/drs-support
2 parents 774082e + bf2f31f commit 928e15d

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/main/groovy/nextflow/ga4gh/tes/executor/TesTaskHandler.groovy

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -245,10 +245,10 @@ class TesTaskHandler extends TaskHandler {
245245
}
246246

247247
// add the task output files
248-
body.addOutputsItem(outItem(outputFile.name))
249-
body.addOutputsItem(outItem(errorFile.name))
250-
body.addOutputsItem(outItem(logFile.name))
251-
body.addOutputsItem(outItem(exitFile.name))
248+
body.addOutputsItem(outItem(outputFile.name, 'FILE'))
249+
body.addOutputsItem(outItem(errorFile.name, 'FILE'))
250+
body.addOutputsItem(outItem(logFile.name, 'FILE'))
251+
body.addOutputsItem(outItem(exitFile.name, 'FILE'))
252252

253253
// set requested resources
254254
body.setResources(getResources(task.config))

0 commit comments

Comments
 (0)