Skip to content

Commit

Permalink
Merge pull request #25920 from sinbai/loadtest/fix_acctests
Browse files Browse the repository at this point in the history
`loadtest` - fix missing build loadtest client issue
  • Loading branch information
tombuildsstuff committed May 10, 2024
2 parents d8b99e4 + 3558856 commit fa08dd2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions internal/clients/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -491,6 +491,9 @@ func (client *Client) Build(ctx context.Context, o *common.ClientOptions) error
if client.LoadBalancers, err = loadbalancers.NewClient(o); err != nil {
return fmt.Errorf("building clients for LoadBalancers: %+v", err)
}
if client.LoadTestService, err = loadtestservice.NewClient(o); err != nil {
return fmt.Errorf("building clients for LoadTestService: %+v", err)
}
if client.Logic, err = logic.NewClient(o); err != nil {
return fmt.Errorf("building clients for Logic: %+v", err)
}
Expand Down

0 comments on commit fa08dd2

Please sign in to comment.