Skip to content
Snippets Groups Projects
Commit 725c0bd8 authored by Daniel Göbel's avatar Daniel Göbel
Browse files

Merge branch 'bugfix/18-fix-wrong-filename-for-nextflow-schema' into 'development'

Resolve "Fix wrong filename for nextflow schema"

Closes #18

See merge request cmg/clowm/clowm-workflow-service!16
parents 795844b0 eebee5df
No related branches found
No related tags found
No related merge requests found
...@@ -193,7 +193,7 @@ async def start_arbitrary_workflow( ...@@ -193,7 +193,7 @@ async def start_arbitrary_workflow(
# Validate schema with saved schema in bucket # Validate schema with saved schema in bucket
with SpooledTemporaryFile(max_size=512000) as f: with SpooledTemporaryFile(max_size=512000) as f:
await repo.download_file("nextflow.schema", client=client, file_handle=f) await repo.download_file("nextflow_schema.json", client=client, file_handle=f)
f.seek(0) f.seek(0)
nextflow_schema = json.load(f) nextflow_schema = json.load(f)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment