diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-03-18 18:09:35 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-03-18 18:09:35 +0000 |
commit | 5bfb8d1fad825eec90b0af688c7cd1b352c9056e (patch) | |
tree | 385411919c4186d11a769385ad8dafeef6cc36a7 /lib | |
parent | aaf59610548d9b0fd01acfd50e831cbe519ecba2 (diff) | |
download | gitlab-ce-5bfb8d1fad825eec90b0af688c7cd1b352c9056e.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib')
-rw-r--r-- | lib/feature.rb | 2 | ||||
-rw-r--r-- | lib/gitlab/checks/diff_check.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/feature.rb b/lib/feature.rb index 37cbe33f7c9..60a5c03a839 100644 --- a/lib/feature.rb +++ b/lib/feature.rb @@ -38,7 +38,7 @@ class Feature begin # We saw on GitLab.com, this database request was called 2300 # times/s. Let's cache it for a minute to avoid that load. - Gitlab::ThreadMemoryCache.cache_backend.fetch('flipper:persisted_names', expires_in: 1.minute) do + Gitlab::ProcessMemoryCache.cache_backend.fetch('flipper:persisted_names', expires_in: 1.minute) do FlipperFeature.feature_names end end diff --git a/lib/gitlab/checks/diff_check.rb b/lib/gitlab/checks/diff_check.rb index 0eb2b4c79ef..a73f243e946 100644 --- a/lib/gitlab/checks/diff_check.rb +++ b/lib/gitlab/checks/diff_check.rb @@ -21,7 +21,7 @@ module Gitlab process_commits do |commit| validate_once(commit) do commit.raw_deltas.each do |diff| - file_paths << (diff.new_path || diff.old_path) + file_paths.concat([diff.new_path, diff.old_path].compact) validate_diff(diff) end |