Skip to content

Commit 37ce464

Browse files
zhuDreamsorcerer
authored andcommitted
Fix: pairs may not support len (#728)
1 parent b9f66e2 commit 37ce464

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aiocache/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ async def multi_set(self, pairs, ttl=SENTINEL, dumps_fn=None, namespace=None, _c
315315
logger.debug(
316316
"MULTI_SET %s %d (%.4f)s",
317317
[key for key, value in tmp_pairs],
318-
len(pairs),
318+
len(tmp_pairs),
319319
time.monotonic() - start,
320320
)
321321
return True

0 commit comments

Comments
 (0)