We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7e4d19 commit 1014364Copy full SHA for 1014364
x/x.go
@@ -48,8 +48,13 @@ const (
48
ErrorServiceUnavailable = "ErrorServiceUnavailable"
49
ValidHostnameRegex = "^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\\-]*[a-zA-Z0-9])\\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\\-]*[A-Za-z0-9])$"
50
// When changing this value also remember to change in in client/client.go:DeleteEdges.
51
- Star = "_STAR_ALL"
52
- GrpcMaxSize = 256 << 20
+ Star = "_STAR_ALL"
+
53
+ // Use the max possible grpc msg size for the most flexibility (4GB - equal
54
+ // to the max grpc frame size). Users will still need to set the max
55
+ // message sizes allowable on the client size when dialing.
56
+ GrpcMaxSize = 4 << 30
57
58
// The attr used to store list of predicates for a node.
59
PredicateListAttr = "_predicate_"
60
0 commit comments