Open noahlz opened 3 years ago
just checking if this is an issue with the AUTH command being used with pipelined commands, and seems like not the case.
https://redis.io/topics/pipelining
$ (printf "PING\r\nPING\r\nPING\r\n"; sleep 1) | nc localhost 6379
-NOAUTH Authentication required.
-NOAUTH Authentication required.
-NOAUTH Authentication required.
$ (printf "AUTH \"mayonaise\"\r\nPING\r\nPING\r\nPING\r\n"; sleep 1) | nc localhost 6379
+OK
+PONG
+PONG
+PONG
See unit tests in PR #292