pre-commit run -a

This commit is contained in:
Iván Todorovich
2026-05-20 09:50:57 -03:00
parent 6d93fbffac
commit a9e4d6b102
14 changed files with 26 additions and 29 deletions
+2 -3
View File
@@ -72,15 +72,14 @@ def purge_fs_sessions(path):
if is_true(os.environ.get("ODOO_SESSION_REDIS")):
if sentinel_host:
_logger.debug(
"HTTP sessions stored in Redis with prefix '%s'. "
"Using Sentinel on %s:%s",
"HTTP sessions stored in Redis with prefix '%s'. Using Sentinel on %s:%s",
prefix or "",
sentinel_host,
sentinel_port,
)
else:
_logger.debug(
"HTTP sessions stored in Redis with prefix '%s' on " "%s:%s",
"HTTP sessions stored in Redis with prefix '%s' on %s:%s",
prefix or "",
host,
port,