You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
self, model: ParentStreamConfigModel, config: Config, **kwargs: Any
3769
3787
) ->Any:
3770
3788
# getting the parent state
3771
-
child_state=self._connector_state_manager.get_stream_state(kwargs["stream_name"], None) # FIXME adding `stream_name` as a parameter means it will be a breaking change. I assume this is mostly called internally so I don't think we need to bother that much about this but still raising the flag
) # FIXME adding `stream_name` as a parameter means it will be a breaking change. I assume this is mostly called internally so I don't think we need to bother that much about this but still raising the flag
# FIXME this is an interesting case. The previous solution would not update the parent state until `ensure_at_least_one_state_emitted` but the concurrent cursor does just before which is probably fine too
# FIXME this is an interesting case. The previous solution would not update the parent state until `ensure_at_least_one_state_emitted` but the concurrent cursor does just before which is probably fine too
# FIXME this is an interesting case. The previous solution would not update the parent state until `ensure_at_least_one_state_emitted` but the concurrent cursor does just before which is probably fine too
"cursor": {"updated_at": START_DATE}, # FIXME this happens because the concurrent framework gets the start date as the max between the state value and the start value. In this case, the start value is higher
2133
+
"cursor": {
2134
+
"updated_at": START_DATE
2135
+
}, # FIXME this happens because the concurrent framework gets the start date as the max between the state value and the start value. In this case, the start value is higher
2134
2136
}
2135
2137
],
2136
2138
"lookback_window": 0, # FIXME the concurrent framework sets the lookback window to 0 as opposed to the declarative framework which would set not define it
0 commit comments