Skip to content
Snippets Groups Projects
Commit 0d66d4d3 authored by Kamil Trzcinski's avatar Kamil Trzcinski
Browse files

Fix reading session_expire_delay when application settings are not yet created...

Fix reading session_expire_delay when application settings are not yet created and migrations are not yet done
parent 0d610270
No related branches found
No related tags found
No related merge requests found
Loading
@@ -2,7 +2,12 @@
Loading
@@ -2,7 +2,12 @@
   
require 'gitlab/current_settings' require 'gitlab/current_settings'
include Gitlab::CurrentSettings include Gitlab::CurrentSettings
Settings.gitlab['session_expire_delay'] = current_application_settings.session_expire_delay
# allow it to fail: it may to do so when create_from_defaults is executed before migrations are actually done
begin
Settings.gitlab['session_expire_delay'] = current_application_settings.session_expire_delay
rescue
end
   
Gitlab::Application.config.session_store( Gitlab::Application.config.session_store(
:redis_store, # Using the cookie_store would enable session replay attacks. :redis_store, # Using the cookie_store would enable session replay attacks.
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment