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
@@ -39,15 +39,16 @@ var _ = Describe("error", func() {
39
39
context.Canceled: false,
40
40
context.DeadlineExceeded: false,
41
41
redis.ErrPoolTimeout: true,
42
+
&net.OpError{Op: "dial"}: true,
42
43
// Use typed errors instead of plain errors.New()
43
-
proto.ParseErrorReply([]byte("-ERR max number of clients reached")): true,
44
-
proto.ParseErrorReply([]byte("-LOADING Redis is loading the dataset in memory")): true,
45
-
proto.ParseErrorReply([]byte("-READONLY You can't write against a read only replica")): true,
44
+
proto.ParseErrorReply([]byte("-ERR max number of clients reached")): true,
45
+
proto.ParseErrorReply([]byte("-LOADING Redis is loading the dataset in memory")): true,
46
+
proto.ParseErrorReply([]byte("-READONLY You can't write against a read only replica")): true,
46
47
proto.ParseErrorReply([]byte("-ERR Error running script (call to f_abc123): @user_script:1: -READONLY You can't write against a read only replica.")): true,
47
-
proto.ParseErrorReply([]byte("-CLUSTERDOWN The cluster is down")): true,
48
-
proto.ParseErrorReply([]byte("-TRYAGAIN Command cannot be processed, please try again")): true,
49
-
proto.ParseErrorReply([]byte("-NOREPLICAS Not enough good replicas to write")): true,
0 commit comments