Files
session_redis_public/session_redis/__manifest__.py
T
Atte IsopuroandGitHub 750bc4dcf8 [MIG] session_redis: Migration to 19.0 (#499)
* lazy_property is deprecated
* Since https://github.com/odoo/odoo/commit/cea66be976c6d0746a972da8a16b7a239d12a462, Session
  must be used as a dictionary when setting custom values
* Session default lifetime is now defined in odoo.http, so we can just reuse that
* Handle new session rotation logic (sessions must be findable by the first 42 chars of they key)
* Handle new session key generation for rotation (keys must be longer than 42 chars to handle devices)
2025-11-24 15:37:51 +01:00

23 lines
604 B
Python

# Copyright 2016-2024 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
{
"name": "Sessions in Redis",
"summary": "Store web sessions in Redis",
"version": "19.0.1.0.0",
"author": "Camptocamp,Odoo Community Association (OCA)",
"license": "AGPL-3",
"category": "Extra Tools",
"depends": ["base"],
"excludes": [
# OCA/server-auth
"auth_session_timeout",
],
"external_dependencies": {
"python": ["redis"],
},
"website": "https://github.com/camptocamp/odoo-cloud-platform",
"installable": False,
}