mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-05-07 15:57:50 +08:00
Merge branch 'master' of https://github.com/seaweedfs/seaweedfs
This commit is contained in:
commit
b64fc44e8d
@ -30,12 +30,6 @@ func (fs *FilerServer) filerHandler(w http.ResponseWriter, r *http.Request) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
isReadHttpCall := r.Method == "GET" || r.Method == "HEAD"
|
|
||||||
if !fs.maybeCheckJwtAuthorization(r, !isReadHttpCall) {
|
|
||||||
writeJsonError(w, r, http.StatusUnauthorized, errors.New("wrong jwt"))
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// proxy to volume servers
|
// proxy to volume servers
|
||||||
var fileId string
|
var fileId string
|
||||||
if strings.HasPrefix(r.RequestURI, "/?proxyChunkId=") {
|
if strings.HasPrefix(r.RequestURI, "/?proxyChunkId=") {
|
||||||
@ -48,6 +42,12 @@ func (fs *FilerServer) filerHandler(w http.ResponseWriter, r *http.Request) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
isReadHttpCall := r.Method == "GET" || r.Method == "HEAD"
|
||||||
|
if !fs.maybeCheckJwtAuthorization(r, !isReadHttpCall) {
|
||||||
|
writeJsonError(w, r, http.StatusUnauthorized, errors.New("wrong jwt"))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
stats.FilerRequestCounter.WithLabelValues(r.Method).Inc()
|
stats.FilerRequestCounter.WithLabelValues(r.Method).Inc()
|
||||||
defer func() {
|
defer func() {
|
||||||
stats.FilerRequestHistogram.WithLabelValues(r.Method).Observe(time.Since(start).Seconds())
|
stats.FilerRequestHistogram.WithLabelValues(r.Method).Observe(time.Since(start).Seconds())
|
||||||
|
@ -36,7 +36,9 @@ func (s *Store) DeleteEcShardNeedle(ecVolume *erasure_coding.EcVolume, n *needle
|
|||||||
func (s *Store) doDeleteNeedleFromAtLeastOneRemoteEcShards(ecVolume *erasure_coding.EcVolume, needleId types.NeedleId) error {
|
func (s *Store) doDeleteNeedleFromAtLeastOneRemoteEcShards(ecVolume *erasure_coding.EcVolume, needleId types.NeedleId) error {
|
||||||
|
|
||||||
_, _, intervals, err := ecVolume.LocateEcShardNeedle(needleId, ecVolume.Version)
|
_, _, intervals, err := ecVolume.LocateEcShardNeedle(needleId, ecVolume.Version)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
if len(intervals) == 0 {
|
if len(intervals) == 0 {
|
||||||
return erasure_coding.NotFoundError
|
return erasure_coding.NotFoundError
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user