We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12f5cc7 commit 65d3c4fCopy full SHA for 65d3c4f
airbyte_cdk/sources/streams/concurrent/adapters.py
@@ -292,6 +292,8 @@ def read(self) -> Iterable[Record]:
292
stream_slice=copy.deepcopy(self._slice),
293
stream_state=self._state,
294
):
295
+ # Noting we'll also need to support FileTransferRecordMessage if we want to support file-based connectors in this facade
296
+ # For now, file-based connectors have their own stream facade
297
if isinstance(record_data, Mapping):
298
data_to_return = dict(record_data)
299
self._stream.transformer.transform(
0 commit comments