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

Propagate context in Pipeline

This commit is contained in:
Vladimir Mihailenco
2019-07-25 13:28:15 +03:00
parent 6bc7daa5b1
commit 52ec525849
6 changed files with 33 additions and 17 deletions

View File

@ -42,9 +42,7 @@ func appendArgs(dst, src []interface{}) []interface{} {
}
}
for _, v := range src {
dst = append(dst, v)
}
dst = append(dst, src...)
return dst
}