Add current locale to commit partial cache key

This commit is contained in:
Douwe Maan 2017-08-18 17:06:17 +02:00
parent 133c72ae42
commit 41c04e7288
2 changed files with 6 additions and 1 deletions

View File

@ -5,7 +5,7 @@
- notes = commit.notes
- note_count = notes.user.count
- cache_key = [project.full_path, commit.id, current_application_settings, note_count, @path.presence, current_controller?(:commits)]
- cache_key = [project.full_path, commit.id, current_application_settings, note_count, @path.presence, current_controller?(:commits), I18n.locale]
- cache_key.push(commit.status(ref)) if commit.status(ref)
= cache(cache_key, expires_in: 1.day) do

View File

@ -0,0 +1,5 @@
---
title: Add current locale to commit partial cache key
merge_request:
author:
type: fixed