Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ycai
simbricks
Commits
c80f821e
Unverified
Commit
c80f821e
authored
Dec 11, 2024
by
Marvin Meiers
Browse files
symphony/runner: fix returning output
parent
930e25e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
symphony/runner/simbricks/runner/__main__.py
symphony/runner/simbricks/runner/__main__.py
+1
-1
No files found.
symphony/runner/simbricks/runner/__main__.py
View file @
c80f821e
...
...
@@ -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
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
():
base_client
=
client
.
BaseClient
(
base_url
=
runset
().
base_url
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment