gate icon indicating copy to clipboard operation
gate copied to clipboard

fix(bug): Add optional query param to async submit create/update pip…

Open srekapalli opened this issue 5 years ago • 0 comments

Currently gate makes blocking calls(submits and waits for task completion) to orca for save/updatePipeline tasks and under load orca calls can get BUFFERED and may not get processed for the amount of time that gate waits, resulting in a 400 bad request to the caller. The fix here is to add an option(query param) for users who automate their processes using this api, to async the task submission and they can poll for task completion and continue their flow upon task completion.

This API hides all the details of task submission ( like base64 encoding etc ) and easier to call than the task endpoint itself.

srekapalli avatar Dec 09 '20 19:12 srekapalli