Fix typo in Authlib cache for OAuth
This commit is contained in:
@@ -29,7 +29,7 @@ class RedisCache:
|
|||||||
await redis.set(f"authlib:{key}", data, ex=expires)
|
await redis.set(f"authlib:{key}", data, ex=expires)
|
||||||
|
|
||||||
async def delete(self, key: str) -> None:
|
async def delete(self, key: str) -> None:
|
||||||
await redis.delete(key)
|
await redis.delete(f"authlib:{key}")
|
||||||
|
|
||||||
|
|
||||||
@lru_cache()
|
@lru_cache()
|
||||||
|
|||||||
Reference in New Issue
Block a user