Browse Source

Merge pull request #3289 from guo-sj/fix_create_policy

pull/3290/head
Chris Lu 2 years ago
committed by GitHub
parent
commit
22e05a2942
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      weed/iamapi/iamapi_server.go

7
weed/iamapi/iamapi_server.go

@ -6,6 +6,8 @@ import (
"bytes"
"encoding/json"
"fmt"
"net/http"
"github.com/chrislusf/seaweedfs/weed/filer"
"github.com/chrislusf/seaweedfs/weed/pb"
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
@ -17,7 +19,6 @@ import (
"github.com/chrislusf/seaweedfs/weed/wdclient"
"github.com/gorilla/mux"
"google.golang.org/grpc"
"net/http"
)
type IamS3ApiConfig interface {
@ -117,10 +118,10 @@ func (iam IamS3ApiConfigure) GetPolicies(policies *Policies) (err error) {
}
return nil
})
if err != nil {
if err != nil && err != filer_pb.ErrNotFound {
return err
}
if buf.Len() == 0 {
if err == filer_pb.ErrNotFound || buf.Len() == 0 {
policies.Policies = make(map[string]PolicyDocument)
return nil
}

Loading…
Cancel
Save