提交 ba97a421 编写于 作者: P Pawel Chojnacki

Remove default arguments for common query context

上级 feb94e8e
......@@ -6,7 +6,9 @@ module Gitlab
def query(environment_id)
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
......
......@@ -71,7 +71,7 @@ module Gitlab
result.select { |group| group.metrics.any? }
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_end: timeframe_end,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册