-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update linking of the outputs and inputs #301
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The wfb schema needs update as certain fileds "outletIndex", "ui" and "inletIndex" are required fields now.
@@ -101,8 +101,8 @@ async def compile_wf(request: Request) -> Json: | |||
req = converter.update_payload_missing_inputs_outputs(req) | |||
wfb_payload = converter.raw_wfb_to_lean_wfb(req) | |||
# schema non-preserving | |||
workflow_temp = converter.wfb_to_wic(wfb_payload) | |||
wkflw_name = "generic_workflow_" + str(uuid.uuid4()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why was removing uuuid from workflow name necessary?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes. There is a limitation on the WFB side for the length of the name. They are also adding a UUID, so we are dropping it. See the Slack discussion.
No description provided.