1
0
mirror of https://github.com/redis/go-redis.git synced 2025-07-28 06:42:00 +03:00

Don't convert bytes to string in Cmd (interface{} value).

This commit is contained in:
Vladimir Mihailenco
2016-04-09 11:53:47 +03:00
parent 1fbb1098f2
commit 956758d395
2 changed files with 2 additions and 8 deletions

View File

@ -165,13 +165,7 @@ func (cmd *Cmd) readReply(cn *pool.Conn) error {
cmd.err = err
return cmd.err
}
if v, ok := val.([]byte); ok {
// Convert to string to preserve old behaviour.
// TODO: remove in v4
cmd.val = string(v)
} else {
cmd.val = val
}
cmd.val = val
return nil
}