Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorThong Kuah <tkuah@gitlab.com>2019-08-13 01:55:11 +0300
committerThong Kuah <tkuah@gitlab.com>2019-08-13 01:55:11 +0300
commit2de17d12d6d8daf1296526ca0b594cf61f808339 (patch)
treea0cb5f5712ca5c6d070e4ac238feff864da8b6b0 /config
parent4254f5dc0ea4c226690d0d9abd20d1c9822fefcb (diff)
parentd470f429fb84fc02a7105de99225a93c5345b3f2 (diff)
Merge branch '63942-remove-config-action_dispatch-use_authenticated_cookie_encryption-configuration' into 'master'
Remove `config.action_dispatch.use_authenticated_cookie_encryption` configuration Closes #63942 See merge request gitlab-org/gitlab-ce!31463
Diffstat (limited to 'config')
-rw-r--r--config/application.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/config/application.rb b/config/application.rb
index 47c5ab71285..733f8652286 100644
--- a/config/application.rb
+++ b/config/application.rb
@@ -293,10 +293,5 @@ module Gitlab
Gitlab::Routing.add_helpers(project_url_helpers)
Gitlab::Routing.add_helpers(MilestonesRoutingHelper)
end
-
- # This makes generated cookies to be compatible with Rails 5.1 and older
- # We can remove this when we're confident that there are no issues with the Rails 5.2 upgrade
- # and we won't need to rollback to older versions
- config.action_dispatch.use_authenticated_cookie_encryption = false
end
end