From 0e509bde1760f8f151497e5c130809567fdd4624 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Kone=C4=8Dn=C3=BD?= Date: Wed, 24 Feb 2021 17:30:27 +0100 Subject: [PATCH] release-monitoring: Change permanent session lifetime to 1 day MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit After the discussion in https://github.com/fedora-infra/anitya/issues/340 this commit will change the session lifetime back to 1 day. Signed-off-by: Michal Konečný --- roles/openshift-apps/release-monitoring/templates/anitya.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/openshift-apps/release-monitoring/templates/anitya.toml b/roles/openshift-apps/release-monitoring/templates/anitya.toml index eef64ce790..b072576d01 100644 --- a/roles/openshift-apps/release-monitoring/templates/anitya.toml +++ b/roles/openshift-apps/release-monitoring/templates/anitya.toml @@ -8,7 +8,7 @@ secret_key = '{{ anitya_secret_key }}' {% endif %} # The lifetime of the session, in seconds. -permanent_session_lifetime = 3600 +permanent_session_lifetime = 86400 {% if env == 'staging' %} db_url = "postgresql://{{ anitya_stg_db_user }}:{{ anitya_stg_db_pass }}@{{ anitya_stg_db_host }}/{{ anitya_stg_db_name }}"