Commit 28f633a9 authored by Douwe Maan's avatar Douwe Maan

Merge branch 'bug/project-feature-compatibility' into 'master'

Mutate the attribute instead of issuing a write operation to the DB in `ProjectFeaturesCompatibility` concern.

Closes gitlab-ee#1520

See merge request !8552
parents 28c23d99 e1521b74
......@@ -32,6 +32,6 @@ module ProjectFeaturesCompatibility
build_project_feature unless project_feature
access_level = Gitlab::Utils.to_boolean(value) ? ProjectFeature::ENABLED : ProjectFeature::DISABLED
project_feature.update_attribute(field, access_level)
project_feature.send(:write_attribute, field, access_level)
end
end
---
title: Mutate the attribute instead of issuing a write operation to the DB in `ProjectFeaturesCompatibility`
concern.
merge_request: 8552
author:
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