Commit d8723861 authored by Imre Farkas's avatar Imre Farkas

Merge branch '276188-enable-query-cache-for-load-balancer-by-default' into 'master'

Enable query_cache_for_load_balancer feature flag by default

See merge request gitlab-org/gitlab!49708
parents d7a183cd 1f912769
---
title: Enable query cache for load balancer
merge_request: 49708
author:
type: performance
...@@ -5,4 +5,4 @@ rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/276203 ...@@ -5,4 +5,4 @@ rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/276203
milestone: '13.7' milestone: '13.7'
type: development type: development
group: group::memory group: group::memory
default_enabled: false default_enabled: true
...@@ -190,7 +190,7 @@ module Gitlab ...@@ -190,7 +190,7 @@ module Gitlab
RequestStore[ENSURE_CACHING_KEY] = true RequestStore[ENSURE_CACHING_KEY] = true
if Feature.enabled?(:query_cache_for_load_balancing) if Feature.enabled?(:query_cache_for_load_balancing, default_enabled: true)
host.enable_query_cache! host.enable_query_cache!
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment