Fix bug where transferring a project would result in stale commit links
Transferring a project to another namespace updates the project's updated_at field, but since the cache key did not depend on the object, the page fragments were not invalidated. This resulted in stale links to the commits. Changing the cache key to use the object pathname solves this issue. Closes gitlab-org/omnibus-gitlab#843
This commit is contained in:
parent
b5c12f742a
commit
dbc85bfa01
2 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
Please view this file on the master branch, on stable branches it's out of date.
|
||||
|
||||
v 8.1.0 (unreleased)
|
||||
- Fix bug where transferring a project would result in stale commit links (Stan Hu)
|
||||
- Include full path of source and target branch names in New Merge Request page (Stan Hu)
|
||||
- Fix Message-ID header to be RFC 2111-compliant to prevent e-mails being dropped (Stan Hu)
|
||||
- Add user preference to view activities as default dashboard (Stan Hu)
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
- note_count = notes.user.count
|
||||
|
||||
- ci_commit = project.ci_commit(commit.sha)
|
||||
- cache_key = [project.id, commit.id, note_count]
|
||||
- cache_key = [project.path_with_namespace, commit.id, note_count]
|
||||
- cache_key.push(ci_commit.status) if ci_commit
|
||||
|
||||
= cache(cache_key) do
|
||||
|
|
Loading…
Reference in a new issue