Skip to content
Snippets Groups Projects
Commit 120c267b authored by Alán Muñoz's avatar Alán Muñoz
Browse files

fix(pipeline): convert path to str before storing

parent b0b6d869
No related branches found
No related tags found
No related merge requests found
...@@ -714,7 +714,9 @@ class Pipeline(ProcessABC): ...@@ -714,7 +714,9 @@ class Pipeline(ProcessABC):
"aliby_version": version("aliby"), "aliby_version": version("aliby"),
"baby_version": version("aliby-baby"), "baby_version": version("aliby-baby"),
"omero_id": config["general"]["id"], "omero_id": config["general"]["id"],
"image_id": image_id, "image_id": image_id
if isinstance(image_id, int)
else str(image_id),
"parameters": PipelineParameters.from_dict( "parameters": PipelineParameters.from_dict(
pparams pparams
).to_yaml(), ).to_yaml(),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment