Commit ba97a421 authored by Pawel Chojnacki's avatar Pawel Chojnacki

Remove default arguments for common query context

parent feb94e8e
...@@ -6,7 +6,9 @@ module Gitlab ...@@ -6,7 +6,9 @@ module Gitlab
def query(environment_id) def query(environment_id)
Environment.find_by(id: environment_id).try do |environment| Environment.find_by(id: environment_id).try do |environment|
query_metrics(common_query_context(environment)) query_metrics(
common_query_context(environment, timeframe_start: 8.hours.ago.to_f, timeframe_end: Time.now.to_f)
)
end end
end end
end end
......
...@@ -71,7 +71,7 @@ module Gitlab ...@@ -71,7 +71,7 @@ module Gitlab
result.select { |group| group.metrics.any? } result.select { |group| group.metrics.any? }
end end
def common_query_context(environment, timeframe_start: 8.hours.ago.to_f, timeframe_end: Time.now.to_f) def common_query_context(environment, timeframe_start:, timeframe_end:)
{ {
timeframe_start: timeframe_start, timeframe_start: timeframe_start,
timeframe_end: timeframe_end, timeframe_end: timeframe_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