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
path: root/app
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2017-11-15 19:58:51 +0300
committerWinnie Hellmann <winnie@gitlab.com>2017-11-15 20:27:19 +0300
commit656111607e75eb438b2f18b2bf546f3fd6986915 (patch)
treeba12c6947588511345a826c5d923722123178a2d /app
parentfd24ea830f8b471d123ff5f202dd1679154953c4 (diff)
Merge branch '39573-hashed-storage-backup' into 'master'
Fix gitlab:backup rake for hashed storage based repositories Closes #39573 See merge request gitlab-org/gitlab-ce!15400 (cherry picked from commit 43cb480aaa876db8023aaa17625c384c4e870045) f4c7fea6 Fix dumping hashed storage based repository cf6efd65 Changelog
Diffstat (limited to 'app')
-rw-r--r--app/models/project_wiki.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/project_wiki.rb b/app/models/project_wiki.rb
index 43de6809178..3eecbea8cbf 100644
--- a/app/models/project_wiki.rb
+++ b/app/models/project_wiki.rb
@@ -21,7 +21,7 @@ class ProjectWiki
end
delegate :empty?, to: :pages
- delegate :repository_storage_path, to: :project
+ delegate :repository_storage_path, :hashed_storage?, to: :project
def path
@project.path + '.wiki'