1
0
mirror of https://github.com/redis/go-redis.git synced 2025-07-29 17:41:15 +03:00

Try to fix Go 1.4.

This commit is contained in:
Vladimir Mihailenco
2016-09-14 11:00:34 +00:00
parent 1a0bda80bf
commit 04cdc41cc4
2 changed files with 2 additions and 1 deletions

View File

@ -58,7 +58,7 @@ func IsMoved(err error) (moved bool, ask bool, addr string) {
return
}
ind := strings.LastIndexByte(s, ' ')
ind := strings.LastIndex(s, " ")
if ind == -1 {
return false, false, ""
}