remove unused logic

This commit is contained in:
chrislu 2022-06-04 19:11:06 -07:00
parent 685643d506
commit 48cca4e54f

View File

@ -141,7 +141,7 @@ func (vs *VolumeServer) GetOrHeadHandler(w http.ResponseWriter, r *http.Request)
vs.inFlightDownloadDataLimitCond.Signal() vs.inFlightDownloadDataLimitCond.Signal()
}() }()
if err != nil && err != storage.ErrorDeleted && r.FormValue("type") != "replicate" && hasVolume { if err != nil && err != storage.ErrorDeleted && hasVolume {
glog.V(4).Infof("read needle: %v", err) glog.V(4).Infof("read needle: %v", err)
// start to fix it from other replicas, if not deleted and hasVolume and is not a replicated request // start to fix it from other replicas, if not deleted and hasVolume and is not a replicated request
} }