Commit e6c7c11a authored by Maxim Rydkin's avatar Maxim Rydkin

replace `has_matching_label` with `has_matching_label?`

parent eb0a17ba
......@@ -244,8 +244,11 @@ Style/PerlBackrefs:
# NameWhitelist: is_a?
Style/PredicateName:
Enabled: true
Exclude:
- 'features/*'
# NamePrefix: is_
NamePrefixBlacklist: is_
NameWhitelist: has_n_stars
# Offense count: 58
# Cop supports --auto-correct.
......
......@@ -42,13 +42,13 @@ module Gitlab
lookup = series.each_slice(MAX_QUERY_ITEMS).flat_map do |batched_series|
client_series(*batched_series, start: timeframe_start, stop: timeframe_end)
.select(&method(:has_matching_label))
.select(&method(:has_matching_label?))
.map { |series_info| [series_info['__name__'], true] }
end
lookup.to_h
end
def has_matching_label(series_info)
def has_matching_label?(series_info)
series_info.key?('environment')
end
......
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