Skip to content

Commit

Permalink
fix(specs): ingestion expected and received events type [skip-bc] (ge…
Browse files Browse the repository at this point in the history
…nerated)

algolia/api-clients-automation#4356

Co-authored-by: algolia-bot <[email protected]>
Co-authored-by: Clément Vannicatte <[email protected]>
  • Loading branch information
algolia-bot and shortcuts committed Jan 13, 2025
1 parent b01d72f commit df54298
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/algolia/models/ingestion/run_progress.rb
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,14 @@ def initialize(attributes = {})

if attributes.key?(:expected_nb_of_events)
self.expected_nb_of_events = attributes[:expected_nb_of_events]
else
self.expected_nb_of_events = nil
end

if attributes.key?(:received_nb_of_events)
self.received_nb_of_events = attributes[:received_nb_of_events]
else
self.received_nb_of_events = nil
end
end

Expand Down

0 comments on commit df54298

Please sign in to comment.