skip JWT if fileId is empty
related to https://github.com/chrislusf/seaweedfs/issues/1808
This commit is contained in:
@@ -136,6 +136,9 @@ func (ms *MasterServer) dirAssignHandler(w http.ResponseWriter, r *http.Request)
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (ms *MasterServer) maybeAddJwtAuthorization(w http.ResponseWriter, fileId string, isWrite bool) {
|
func (ms *MasterServer) maybeAddJwtAuthorization(w http.ResponseWriter, fileId string, isWrite bool) {
|
||||||
|
if fileId == "" {
|
||||||
|
return
|
||||||
|
}
|
||||||
var encodedJwt security.EncodedJwt
|
var encodedJwt security.EncodedJwt
|
||||||
if isWrite {
|
if isWrite {
|
||||||
encodedJwt = security.GenJwt(ms.guard.SigningKey, ms.guard.ExpiresAfterSec, fileId)
|
encodedJwt = security.GenJwt(ms.guard.SigningKey, ms.guard.ExpiresAfterSec, fileId)
|
||||||
|
|||||||
Reference in New Issue
Block a user