blob: 17cec3f75f8c6e33c1a0fe1a2c88d8533ca2c268 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
package dispatch
import (
"fmt"
v1 "github.com/authzed/authzed-go/proto/authzed/api/v1"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
"github.com/authzed/spicedb/pkg/spiceerrors"
)
// MaxDepthExceededError is an error returned when the maximum depth for dispatching has been exceeded.
type MaxDepthExceededError struct {
error
// Request is the request that exceeded the maximum depth.
Request DispatchableRequest
}
// NewMaxDepthExceededError creates a new MaxDepthExceededError.
func NewMaxDepthExceededError(req DispatchableRequest) error {
return MaxDepthExceededError{
fmt.Errorf("max depth exceeded: this usually indicates a recursive or too deep data dependency. See: https://spicedb.dev/d/debug-max-depth"),
req,
}
}
// GRPCStatus implements retrieving the gRPC status for the error.
func (err MaxDepthExceededError) GRPCStatus() *status.Status {
return spiceerrors.WithCodeAndDetails(
err,
codes.ResourceExhausted,
spiceerrors.ForReason(
v1.ErrorReason_ERROR_REASON_MAXIMUM_DEPTH_EXCEEDED,
map[string]string{},
),
)
}
|