You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// The byte slices must be copied to ensure that memory associated with the underlying memd mutationEvent and Packet are independent and can be released or reused by gocbcore as needed.
// The byte slices must be copied to ensure that memory associated with the underlying memd mutationEvent and Packet are independent and can be released or reused by gocbcore as needed.
// Makes a feedEvent that can be passed to a FeedEventCallbackFunc implementation
525
+
// The byte slices must be copied to ensure that memory associated with the memd mutationEvent and Packet are independent and can be released or reused by gocbcore as needed.
Copy file name to clipboardExpand all lines: base/error.go
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -78,6 +78,9 @@ var (
78
78
// ErrSkippedSequencesMissing is returned when attempting to remove a sequence range form the skipped sequence list and at least one sequence in that range is not present
79
79
ErrSkippedSequencesMissing=&sgError{"Sequence range has sequences that aren't present in skipped list"}
80
80
81
+
// ErrMaxSequenceReleasedExceeded is returned when the maximum number of sequences to be released as part of nextSequenceGreaterThan is exceeded
82
+
ErrMaxSequenceReleasedExceeded=&sgError{"Maximum number of sequences to release to catch up with document sequence exceeded"}
83
+
81
84
// ErrInvalidJSON is returned when the JSON being unmarshalled cannot be parsed.
0 commit comments