Skip to content

Commit

Permalink
Merge pull request #2618 from kobergj/fixPanicUpdateDrive
Browse files Browse the repository at this point in the history
fix panics in update drive handler
  • Loading branch information
wkloucek committed Oct 13, 2021
2 parents 9e961e7 + 5b9870d commit 719e1cf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion graph/pkg/service/v0/drives.go
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,8 @@ func (g Graph) UpdateDrive(w http.ResponseWriter, r *http.Request) {

req, err := godata.ParseRequest(sanitized, r.URL.Query(), true)
if err != nil {
panic(err)
errorcode.GeneralException.Render(w, r, http.StatusBadRequest, err.Error())
return
}

if req.FirstSegment.Identifier.Get() == "" {
Expand All @@ -256,6 +257,7 @@ func (g Graph) UpdateDrive(w http.ResponseWriter, r *http.Request) {
if len(identifierParts) != 2 {
errorcode.GeneralException.Render(w, r, http.StatusBadRequest, fmt.Sprintf("invalid resource id: %v", req.FirstSegment.Identifier.Get()))
w.WriteHeader(http.StatusInternalServerError)
return
}

storageID, opaqueID := identifierParts[0], identifierParts[1]
Expand Down Expand Up @@ -287,10 +289,12 @@ func (g Graph) UpdateDrive(w http.ResponseWriter, r *http.Request) {
resp, err := client.UpdateStorageSpace(r.Context(), updateSpaceRequest)
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
return
}

if resp.GetStatus().GetCode() != v1beta11.Code_CODE_OK {
errorcode.GeneralException.Render(w, r, http.StatusInternalServerError, "")
return
}

w.WriteHeader(http.StatusNoContent)
Expand Down

0 comments on commit 719e1cf

Please sign in to comment.