Skip to content

Commit

Permalink
fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
zreigz committed May 17, 2024
1 parent adcefc9 commit 902b28f
Show file tree
Hide file tree
Showing 4 changed files with 1,678 additions and 1,014 deletions.
4 changes: 2 additions & 2 deletions cmd/plural/bootstrap.go
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ func (p *Plural) handleMoveCluster(c *cli.Context) error {
return fmt.Errorf("You're not within an installation repo")
}

client, err := apiclient.New("")
client, err := apiclient.New(context.Background(), "")
if err != nil {
return err
}
Expand All @@ -238,7 +238,7 @@ func (p *Plural) handleMoveCluster(c *cli.Context) error {
Namespace: "bootstrap",
DryRun: false,
}
if err := client.Move(options); err != nil {
if err := client.Move(context.Background(), options); err != nil {
return err
}

Expand Down
Loading

0 comments on commit 902b28f

Please sign in to comment.