From 14f77108d3498fbc84cd8b10cb48c18f09661458 Mon Sep 17 00:00:00 2001 From: walkor Date: Mon, 13 Jun 2022 15:14:28 +0800 Subject: [PATCH] Update Redis.php --- src/Protocols/Redis.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Protocols/Redis.php b/src/Protocols/Redis.php index 168b9e7..64c05a2 100644 --- a/src/Protocols/Redis.php +++ b/src/Protocols/Redis.php @@ -172,7 +172,7 @@ public static function decode($buffer) } return [$type, $value]; default: - return ['!', "protocol error, got '$type' as reply type byte."]; + return ['!', "protocol error, got '$type' as reply type byte. buffer:".bin2hex($buffer)]; } }