1
0
mirror of https://github.com/redis/go-redis.git synced 2025-08-10 11:03:00 +03:00

internal/proto: use read prefix to indicate that method reads from the stream.

This commit is contained in:
Vladimir Mihailenco
2016-10-14 14:42:32 +03:00
parent dcdf129dd5
commit 3996289fe2
2 changed files with 4 additions and 4 deletions

View File

@@ -406,5 +406,5 @@ func timeParser(rd *proto.Reader, n int64) (interface{}, error) {
return nil, err
}
return time.Unix(sec, microsec*100), nil
return time.Unix(sec, microsec*1000), nil
}