feat: added retry last action support for workspaces and new failure states

This commit is contained in:
Andrey Melnikov
2020-09-10 12:30:18 -07:00
parent 076422e8ac
commit fc7ef5ffac
11 changed files with 693 additions and 107 deletions

View File

@@ -178,6 +178,9 @@ func (s *WorkflowServer) GetWorkflowExecution(ctx context.Context, req *api.GetW
if err != nil {
return nil, err
}
if wf == nil {
return nil, util.NewUserError(codes.NotFound, "Workflow not found")
}
wf.Namespace = req.Namespace