From c4ad31b03aa18876a643225002fae41704b9e27f Mon Sep 17 00:00:00 2001 From: Rivo Lalaina Date: Tue, 24 Jun 2025 10:05:41 +0300 Subject: [PATCH] Update README.rst --- auth_session_redis_timeout/README.rst | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/auth_session_redis_timeout/README.rst b/auth_session_redis_timeout/README.rst index faccecbf..6fe0446e 100644 --- a/auth_session_redis_timeout/README.rst +++ b/auth_session_redis_timeout/README.rst @@ -14,6 +14,23 @@ The two system parameters of the module `Auth Session Timeout` are available: - inactive_session_time_out_delay: validity of a session in seconds (default = 2 Hours) - inactive_session_time_out_ignored_url: technical urls where the check does not occur +Installation +------------ + +.. warning:: + + **Important – Installation Order Matters!** + + This module depends on ``Auth Session Timeout``, but you **must install** + ``Auth Session Redis Timeout`` **first**. + + ``Auth Session Redis Timeout`` will automatically install ``Auth Session Timeout`` as a dependency. + + **Do NOT install** ``Auth Session Timeout`` separately before this module. + + If you do, it will result in an **Internal Server Error** after installation, + due to a conflict in the inherited method ``_auth_timeout_check``. + Contributors ------------