mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-10-21 23:57:25 +08:00
fix abused 404 status code
Signed-off-by: divinerapier <poriter.coco@gmail.com>
This commit is contained in:
@@ -32,10 +32,15 @@ func (fs *FilerServer) GetOrHeadHandler(w http.ResponseWriter, r *http.Request,
|
|||||||
fs.listDirectoryHandler(w, r)
|
fs.listDirectoryHandler(w, r)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
if err == filer2.ErrNotFound {
|
||||||
glog.V(1).Infof("Not found %s: %v", path, err)
|
glog.V(1).Infof("Not found %s: %v", path, err)
|
||||||
|
|
||||||
stats.FilerRequestCounter.WithLabelValues("read.notfound").Inc()
|
stats.FilerRequestCounter.WithLabelValues("read.notfound").Inc()
|
||||||
w.WriteHeader(http.StatusNotFound)
|
w.WriteHeader(http.StatusNotFound)
|
||||||
|
} else {
|
||||||
|
glog.V(0).Infof("Internal %s: %v", path, err)
|
||||||
|
stats.FilerRequestCounter.WithLabelValues("read.internalerror").Inc()
|
||||||
|
w.WriteHeader(http.StatusInternalServerError)
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user