Skip to content

Commit

Permalink
Merge branch 'main' into clean_up_hook
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Jun 24, 2022
2 parents 24d9853 + 67455a1 commit 442ccc7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions singer_sdk/tap_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,10 @@ def sync_all(self) -> None:

stream.sync()
stream.finalize_state_progress_markers()

# this second loop is needed for all streams to print out their costs
# including child streams which are otherwise skipped in the loop above
for stream in self.streams.values():
stream.log_sync_costs()

# Command Line Execution
Expand Down

0 comments on commit 442ccc7

Please sign in to comment.