Skip to content

Commit

Permalink
fix: delete non existing disk issue
Browse files Browse the repository at this point in the history
  • Loading branch information
andyzhangx committed May 20, 2021
1 parent e338438 commit cd34e81
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -21,6 +21,7 @@ package azure
import (
"context"
"fmt"
"net/http"
"path"
"strconv"
"strings"
Expand Down Expand Up @@ -236,6 +237,10 @@ func (c *ManagedDiskController) DeleteManagedDisk(diskURI string) error {

rerr = c.common.cloud.DisksClient.Delete(ctx, resourceGroup, diskName)
if rerr != nil {
if rerr.HTTPStatusCode == http.StatusNotFound {
klog.V(2).Infof("azureDisk - disk(%s) is already deleted", diskURI)
return nil
}
return rerr.Error()
}
// We don't need poll here, k8s will immediately stop referencing the disk
Expand Down

0 comments on commit cd34e81

Please sign in to comment.