Skip to content
Snippets Groups Projects
Commit af87f802 authored by Sean McGivern's avatar Sean McGivern
Browse files

Merge branch 'fix/remove-wiki-cache-clear' into 'master'

Remove calls to clear_cache from Git::Wiki

Closes gitaly#1095

See merge request gitlab-org/gitlab-ce!17914
parents 89de9bd8 d0a1da52
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -29,7 +29,6 @@ module Gitlab
@repository.gitaly_migrate(:wiki_write_page) do |is_enabled|
if is_enabled
gitaly_write_page(name, format, content, commit_details)
gollum_wiki.clear_cache
else
gollum_write_page(name, format, content, commit_details)
end
Loading
Loading
@@ -40,7 +39,6 @@ module Gitlab
@repository.gitaly_migrate(:wiki_delete_page) do |is_enabled|
if is_enabled
gitaly_delete_page(page_path, commit_details)
gollum_wiki.clear_cache
else
gollum_delete_page(page_path, commit_details)
end
Loading
Loading
@@ -51,7 +49,6 @@ module Gitlab
@repository.gitaly_migrate(:wiki_update_page) do |is_enabled|
if is_enabled
gitaly_update_page(page_path, title, format, content, commit_details)
gollum_wiki.clear_cache
else
gollum_update_page(page_path, title, format, content, commit_details)
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment