Browse Source
fix abused 404 status code
Signed-off-by: divinerapier <poriter.coco@gmail.com>
pull/1091/head
divinerapier
5 years ago
No known key found for this signature in database
GPG Key ID: EA114C69199EE3BB
1 changed files with
9 additions and
4 deletions
-
weed/server/filer_server_handlers_read.go
|
|
@ -32,10 +32,15 @@ func (fs *FilerServer) GetOrHeadHandler(w http.ResponseWriter, r *http.Request, |
|
|
|
fs.listDirectoryHandler(w, r) |
|
|
|
return |
|
|
|
} |
|
|
|
glog.V(1).Infof("Not found %s: %v", path, err) |
|
|
|
|
|
|
|
stats.FilerRequestCounter.WithLabelValues("read.notfound").Inc() |
|
|
|
w.WriteHeader(http.StatusNotFound) |
|
|
|
if err == filer2.ErrNotFound { |
|
|
|
glog.V(1).Infof("Not found %s: %v", path, err) |
|
|
|
stats.FilerRequestCounter.WithLabelValues("read.notfound").Inc() |
|
|
|
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 |
|
|
|
} |
|
|
|
|
|
|
|