Skip to content

Commit

Permalink
fix: remove network omit flag (#3066)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ajay Kelkar committed Feb 3, 2023
1 parent 44556a4 commit c629b72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/cliclient/cleanup.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func (h *CleanupHandler) CleanupSQL(cmd *cobra.Command, args []string) error {
return errors.Wrap(err, "An error occurred initializing cleanup")
}

err = d.Init(cmd.Context(), &contextx.Default{}, driver.SkipNetworkInit)
err = d.Init(cmd.Context(), &contextx.Default{})
if err != nil {
return errors.Wrap(err, "An error occurred initializing cleanup")
}
Expand Down

0 comments on commit c629b72

Please sign in to comment.