Merge pull request #493 from camptocamp/18.0-fix-session_redis

[18.0][FIX] session_redis: add incompatibility to auth_session_timeout
This commit is contained in:
SilvioC2C
2025-05-08 13:21:27 +02:00
committed by GitHub
co-authored by GitHub
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ jobs:
python-version: "3.11" python-version: "3.11"
- name: Get python version - name: Get python version
run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV
- uses: actions/cache@v1 - uses: actions/cache@v4
with: with:
path: ~/.cache/pre-commit path: ~/.cache/pre-commit
key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }} key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}
+4
View File
@@ -10,6 +10,10 @@
"license": "AGPL-3", "license": "AGPL-3",
"category": "Extra Tools", "category": "Extra Tools",
"depends": ["base"], "depends": ["base"],
"excludes": [
# OCA/server-auth
"auth_session_timeout",
],
"external_dependencies": { "external_dependencies": {
"python": ["redis"], "python": ["redis"],
}, },