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
diff options
context:
space:
mode:
authorJacob Vosmaer <contact@jacobvosmaer.nl>2014-04-15 14:11:13 +0400
committerJacob Vosmaer <contact@jacobvosmaer.nl>2014-04-15 17:53:14 +0400
commit8d78662e69a11dc82916793d97aba36dacae1440 (patch)
tree485de34ae849b44d923d5df9f6227e9219f8d116 /CHANGELOG
parent0d3ba71bcb92218585988ca1b9f863a796d6e168 (diff)
Give the Rails cache its own Redis namespace
Before this change, Rails cache data was stored in a global Redis namespace. As a consequence, clearing the Rails cache (`rake cache:clear`) would also delete all Sidekiq queue data and session storage. This change puts all Rails cache data in a `cache:gitlab` namespace, making `rake cache:clear` safe again.
Diffstat (limited to 'CHANGELOG')
-rw-r--r--CHANGELOG1
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 3ef46f4484e..25067d3abe2 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -17,6 +17,7 @@ v 6.8.0
- Fix download link for huge MR diffs
- Expose event and mergerequest timestamps in API
- Fix emails on push service when only one commit is pushed
+ - Store Rails cache data in the Redis `cache:gitlab` namespace
v 6.7.3
- Fix the merge notification email not being sent (Pierre de La Morinerie)