1
0
mirror of https://github.com/redis/go-redis.git synced 2025-07-18 00:20:57 +03:00

chore: update dependencies

This commit is contained in:
Vladimir Mihailenco
2021-09-23 16:31:21 +03:00
parent 8648971b29
commit 3f99e7b13b
16 changed files with 72 additions and 62 deletions

View File

@ -1495,7 +1495,9 @@ func (c cmdable) LMove(ctx context.Context, source, destination, srcpos, destpos
return cmd
}
func (c cmdable) BLMove(ctx context.Context, source, destination, srcpos, destpos string, timeout time.Duration) *StringCmd {
func (c cmdable) BLMove(
ctx context.Context, source, destination, srcpos, destpos string, timeout time.Duration,
) *StringCmd {
cmd := NewStringCmd(ctx, "blmove", source, destination, srcpos, destpos, formatSec(ctx, timeout))
cmd.setReadTimeout(timeout)
_ = c(ctx, cmd)