spicy-redis: Separate error replies from success

This commit is contained in:
Evan Typanski 2025-05-23 15:02:53 -04:00
parent d5b121db14
commit b4429a995a
21 changed files with 130 additions and 73 deletions

View file

@ -11,7 +11,12 @@ event Redis::command(c: connection, command: Redis::Command)
print "BAD", command;
}
event Redis::reply(c: connection, dat: Redis::ServerData)
event Redis::reply(c: connection, dat: Redis::ReplyData)
{
print "BAD", dat;
}
event Redis::error(c: connection, dat: Redis::ReplyData)
{
print "BAD", dat;
}