Skip to content

Commit

Permalink
Merge pull request #504 from kube-tarian/temporal-send-event-fix
Browse files Browse the repository at this point in the history
temporal send event executeworkflow args fixed
  • Loading branch information
vramk23 authored Jun 2, 2024
2 parents bfb4ad6 + 144b540 commit ae8aaeb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions capten/common-pkg/temporalclient/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"strings"
"time"

"github.com/kelseyhightower/envconfig"
"github.com/intelops/go-common/logging"
"github.com/kelseyhightower/envconfig"

"go.temporal.io/api/workflowservice/v1"
"go.temporal.io/sdk/client"
Expand Down Expand Up @@ -78,7 +78,7 @@ func (c *Client) ExecuteWorkflow(
workflowName string,
args ...interface{},
) (client.WorkflowRun, error) {
return c.TemporalClient.ExecuteWorkflow(ctx, options, workflowName, args)
return c.TemporalClient.ExecuteWorkflow(ctx, options, workflowName, args...)
}

func fetchConfiguration() (*Configuration, error) {
Expand Down

0 comments on commit ae8aaeb

Please sign in to comment.