We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0add049 commit d636890Copy full SHA for d636890
wes_service/arvados_wes.py
@@ -85,7 +85,7 @@ def GetWorkflowLog(self, workflow_id):
85
86
outputobj = {}
87
if request["output_uuid"]:
88
- c = arvados.collection.CollectionReader(request["output_uuid"])
+ c = arvados.collection.CollectionReader(request["output_uuid"], api_client=api)
89
with c.open("cwl.output.json") as f:
90
outputobj = json.load(f)
91
@@ -97,7 +97,7 @@ def keepref(d):
97
98
stderr = ""
99
if request["log_uuid"]:
100
- c = arvados.collection.CollectionReader(request["log_uuid"])
+ c = arvados.collection.CollectionReader(request["log_uuid"], api_client=api)
101
if "stderr.txt" in c:
102
with c.open("stderr.txt") as f:
103
stderr = f.read()
0 commit comments