delete feature flag when disabling Rugged

This commit is contained in:
Ben Bodenmiller 2019-05-13 08:57:10 +00:00
parent e8fe08fca2
commit 2497917b65
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ namespace :gitlab do
if status
Feature.enable(flag)
else
Feature.disable(flag)
Feature.get(flag).remove
end
end
end