Unverified Commit c80f821e authored by Marvin Meiers's avatar Marvin Meiers
Browse files

symphony/runner: fix returning output

parent 930e25e9
...@@ -91,7 +91,7 @@ async def run_instantiation(sc: client.SimBricksClient, rc: client.RunnerClient, ...@@ -91,7 +91,7 @@ async def run_instantiation(sc: client.SimBricksClient, rc: client.RunnerClient,
) )
await sc.set_run_artifact(run_id, inst.artifact_name) await sc.set_run_artifact(run_id, inst.artifact_name)
await rc.update_run(run_id, "completed", json.dumps(output.toJSON())) await rc.update_run(run_id, "completed", json.dumps(list(d)[0].result().toJSON()))
async def amain(): async def amain():
base_client = client.BaseClient(base_url=runset().base_url) base_client = client.BaseClient(base_url=runset().base_url)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment