Skip to content

Commit

Permalink
Ensure first parent uses cache
Browse files Browse the repository at this point in the history
  • Loading branch information
maxi297 committed Dec 5, 2024
1 parent 494f5c6 commit 3098764
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def _group_streams(
state_manager = ConnectorStateManager(state=self._state) # type: ignore # state is always in the form of List[AirbyteStateMessage]. The ConnectorStateManager should use generics, but this can be done later

name_to_stream_mapping = {
stream["name"]: stream for stream in self.resolved_manifest["streams"]
stream["name"]: stream for stream in self._initialize_cache_for_parent_streams(self.resolved_manifest["streams"])
}

for declarative_stream in self.streams(config=config):
Expand Down

0 comments on commit 3098764

Please sign in to comment.