Skip to content

Commit 3ddbd4f

Browse files
committed
Fix WaitForWorkflowStart
Signed-off-by: joshvanl <[email protected]>
1 parent 8897355 commit 3ddbd4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

workflow/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ func (c *Client) FetchWorkflowMetadata(ctx context.Context, id string, opts ...F
6262
//
6363
// api.ErrInstanceNotFound is returned when the specified workflow doesn't
6464
// exist.
65-
func (c *Client) WaitForWorkfowStart(ctx context.Context, id string, opts ...FetchWorkflowMetadataOptions) (*WorkflowMetadata, error) {
65+
func (c *Client) WaitForWorkflowStart(ctx context.Context, id string, opts ...FetchWorkflowMetadataOptions) (*WorkflowMetadata, error) {
6666
oops := make([]api.FetchOrchestrationMetadataOptions, len(opts))
6767
for i, o := range opts {
6868
oops[i] = api.FetchOrchestrationMetadataOptions(o)

0 commit comments

Comments
 (0)