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/lib
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2019-05-14 13:11:32 +0300
committerStan Hu <stanhu@gmail.com>2019-05-14 13:11:32 +0300
commitb02fca968445e0828fc76bec689ab3d4f3755e07 (patch)
tree91edf39d61a72a64f460b164fe571b761f09bfd8 /lib
parent568999e6886db4c94d21d974b49f1f89e547e013 (diff)
parent2497917b655dea06e21f47df9c07dd227c94473d (diff)
Merge branch 'patch-58' into 'master'
delete feature flag when disabling Rugged See merge request gitlab-org/gitlab-ce!28289
Diffstat (limited to 'lib')
-rw-r--r--lib/tasks/gitlab/features.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/gitlab/features.rake b/lib/tasks/gitlab/features.rake
index d115961108e..d88bcca0819 100644
--- a/lib/tasks/gitlab/features.rake
+++ b/lib/tasks/gitlab/features.rake
@@ -17,7 +17,7 @@ namespace :gitlab do
if status
Feature.enable(flag)
else
- Feature.disable(flag)
+ Feature.get(flag).remove
end
end
end