token-type-tolerance

This commit is contained in:
2023-10-13 14:45:24 +03:00
parent 792d60453a
commit e9f68c8fb1
3 changed files with 9 additions and 0 deletions

View File

@@ -21,6 +21,9 @@ class RedisCache:
return await self._client.execute_command(command, *args, **kwargs)
except Exception as e:
print(f"[redis] error: {e}")
import traceback
traceback.print_exc()
return None
async def subscribe(self, *channels):