Skip to content

Commit

Permalink
Cosmetic: commit the results of make golines
Browse files Browse the repository at this point in the history
  • Loading branch information
djjuhasz committed Apr 2, 2024
1 parent 6b6cdf8 commit f522aed
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion cmd/enduro-a3m-worker/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,13 @@ func main() {
temporalsdk_activity.RegisterOptions{Name: activities.BundleActivityName},
)
w.RegisterActivityWithOptions(
a3m.NewCreateAIPActivity(logger, tp.Tracer(a3m.CreateAIPActivityName), a3mClient.TransferClient, &cfg.A3m, pkgsvc).Execute,
a3m.NewCreateAIPActivity(
logger,
tp.Tracer(a3m.CreateAIPActivityName),
a3mClient.TransferClient,
&cfg.A3m,
pkgsvc,
).Execute,
temporalsdk_activity.RegisterOptions{Name: a3m.CreateAIPActivityName},
)
w.RegisterActivityWithOptions(
Expand Down
8 changes: 7 additions & 1 deletion internal/a3m/a3m_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,13 @@ func TestCreateAIPActivity(t *testing.T) {
})

env.RegisterActivityWithOptions(
a3m.NewCreateAIPActivity(logr.Discard(), noop.Tracer{}, a3mTransferServiceClient, &a3m.Config{}, pkgSvc).Execute,
a3m.NewCreateAIPActivity(
logr.Discard(),
noop.Tracer{},
a3mTransferServiceClient,
&a3m.Config{},
pkgSvc,
).Execute,
temporalsdk_activity.RegisterOptions{
Name: a3m.CreateAIPActivityName,
},
Expand Down

0 comments on commit f522aed

Please sign in to comment.