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 665dc1f commit 49bbf7fCopy full SHA for 49bbf7f
airbyte_cdk/sources/streams/concurrent/adapters.py
@@ -302,6 +302,15 @@ def read(self) -> Iterable[Record]:
302
stream_name=self.stream_name(),
303
associated_slice=self._slice, # type: ignore [arg-type]
304
)
305
+ elif (
306
+ isinstance(record_data, AirbyteMessage)
307
+ and record_data.record is not None
308
+ ):
309
+ yield Record(
310
+ data=record_data.record.data,
311
+ stream_name=self.stream_name(),
312
+ associated_slice=self._slice, # type: ignore [arg-type]
313
+ )
314
else:
315
self._message_repository.emit_message(record_data)
316
except Exception as e:
0 commit comments