Skip to content
Snippets Groups Projects
Commit ba97a421 authored by Pawel Chojnacki's avatar Pawel Chojnacki
Browse files

Remove default arguments for common query context

parent feb94e8e
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -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
Loading
Loading
Loading
Loading
@@ -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,
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