Skip to content
Snippets Groups Projects
Commit f5f439f2 authored by Sean McGivern's avatar Sean McGivern
Browse files

Ensure services counts always have values in usage pings

parent d13ae9c2
No related branches found
No related tags found
1 merge request!10495Merge Requests - Assignee
Loading
Loading
@@ -121,7 +121,7 @@ module Gitlab
}
 
results = count(Service.unscoped.where(type: types.keys, active: true).group(:type), fallback: Hash.new(-1))
results.each_with_object({}) { |(key, value), response| response[types[key.to_sym]] = value }
types.each_with_object({}) { |(klass, key), response| response[key] = results[klass.to_s] || 0 }
end
 
def count(relation, fallback: -1)
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment