Skip to content

Commit

Permalink
Argument type change for DestroyModel api call
Browse files Browse the repository at this point in the history
  • Loading branch information
cderici committed Sep 28, 2023
1 parent 18312f1 commit af9f354
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/juju/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ func (c *modelsClient) DestroyModel(input DestroyModelInput) error {
destroyStorage := true
forceDestroy := false

err = client.DestroyModel(tag, &destroyStorage, &forceDestroy, &maxWait, timeout)
err = client.DestroyModel(tag, &destroyStorage, &forceDestroy, &maxWait, &timeout)
if err != nil {
return err
}
Expand Down

0 comments on commit af9f354

Please sign in to comment.