File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
django_valkey/async_cache/client Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -466,11 +466,11 @@ async def get_many(
466
466
client = await self ._get_client (write = False , client = client )
467
467
468
468
try :
469
- pipline = await client .pipeline ()
469
+ pipeline = await client .pipeline ()
470
470
for key in keys :
471
471
key = await self .make_key (key , version = version )
472
- await pipline .get (key )
473
- values = await pipline .execute ()
472
+ await pipeline .get (key )
473
+ values = await pipeline .execute ()
474
474
except _main_exceptions as e :
475
475
raise ConnectionInterrupted (connection = client ) from e
476
476
@@ -606,7 +606,7 @@ async def decr(
606
606
client : AValkey | Any | None = None ,
607
607
) -> int :
608
608
"""
609
- Decreace delta to value in the cache. If the key does not exist, raise a
609
+ Decrease delta to value in the cache. If the key does not exist, raise a
610
610
ValueError exception.
611
611
"""
612
612
return await self ._incr (key , delta = - delta , version = version , client = client )
You can’t perform that action at this time.
0 commit comments