summaryrefslogtreecommitdiff
path: root/lib/gitlab/cycle_analytics/base_event.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/cycle_analytics/base_event.rb')
-rw-r--r--lib/gitlab/cycle_analytics/base_event.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/gitlab/cycle_analytics/base_event.rb b/lib/gitlab/cycle_analytics/base_event.rb
index 53a148ad703..c87841c119a 100644
--- a/lib/gitlab/cycle_analytics/base_event.rb
+++ b/lib/gitlab/cycle_analytics/base_event.rb
@@ -5,10 +5,10 @@ module Gitlab
attr_reader :stage, :start_time_attrs, :end_time_attrs, :projections, :query
- def initialize(project:, options:)
- @query = EventsQuery.new(project: project, options: options)
- @project = project
- @options = options
+ def initialize(fetcher:, stage:)
+ @query = EventsQuery.new(fetcher: fetcher)
+ @project = fetcher.project
+ @stage = stage
end
def fetch