mirror of
https://github.com/camptocamp/odoo-cloud-platform.git
synced 2026-06-23 18:04:34 +00:00
* 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)
23 lines
604 B
Python
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,
|
|
}
|