Commit 100f4370 authored by Robert Speicher's avatar Robert Speicher

Merge branch 'fix_cache_expiration_in_repository' into 'master'

Fix redundant cache expiration in Repository

Closes #30146

See merge request !10575
parents 84da388d 9f8ae20f
......@@ -407,8 +407,6 @@ class Repository
# Runs code after a repository has been forked/imported.
def after_import
expire_content_cache
expire_tags_cache
expire_branches_cache
end
# Runs code after a new commit has been pushed.
......
---
title: Fix redundant cache expiration in Repository
merge_request: 10575
author: blackst0ne
......@@ -1283,8 +1283,6 @@ describe Repository, models: true do
describe '#after_import' do
it 'flushes and builds the cache' do
expect(repository).to receive(:expire_content_cache)
expect(repository).to receive(:expire_tags_cache)
expect(repository).to receive(:expire_branches_cache)
repository.after_import
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