Skip to content

Commit

Permalink
handler: Fix compilation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Fishman committed Nov 30, 2017
1 parent 4ee13db commit 9ac93f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ func (h Handler) StartWorkflow(ctx context.Context, req *models.StartWorkflowReq
return &models.Workflow{}, err
}

return h.manager.CreateWorkflow(workflowDefinition, req.Input, req.Namespace, *req.Queue, req.Tags)
return h.manager.CreateWorkflow(workflowDefinition, req.Input, req.Namespace, req.Queue, req.Tags)
}

// GetWorkflows returns a summary of all workflows matching the given query.
Expand Down

0 comments on commit 9ac93f5

Please sign in to comment.