Skip to content

Commit

Permalink
Increase maximum number of adjacent/neighbor warrants query and expan…
Browse files Browse the repository at this point in the history
…d can evaluate (#284)
  • Loading branch information
kkajla12 committed Jan 9, 2024
1 parent a85a990 commit 28fdd37
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/authz/check/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
)

const (
MaxWarrants = 5000
MaxWarrants = 10000
)

type CheckContextFunc func(ctx context.Context) (context.Context, error)
Expand Down
2 changes: 1 addition & 1 deletion pkg/authz/query/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (

const (
MaxObjectTypes = 1000
MaxEdges = 5000
MaxEdges = 10000
)

var ErrInvalidQuery = errors.New("invalid query")
Expand Down

0 comments on commit 28fdd37

Please sign in to comment.