Skip to content

Commit

Permalink
fixed storage pool delete functionality (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnikaAgiwal2711 authored May 31, 2023
1 parent d536c8c commit 92e254d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storagepool.go
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ func (pd *ProtectionDomain) DisableRFCache(ID string) (string, error) {
// DeleteStoragePool will delete a storage pool
func (pd *ProtectionDomain) DeleteStoragePool(name string) error {
// get the storage pool name
pool, err := pd.client.FindStoragePool("", name, "", "")
pool, err := pd.FindStoragePool("", name, "")
if err != nil {
return err
}
Expand Down

0 comments on commit 92e254d

Please sign in to comment.