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 49bbf7f commit 448074dCopy full SHA for 448074d
airbyte_cdk/sources/streams/concurrent/adapters.py
@@ -307,7 +307,7 @@ def read(self) -> Iterable[Record]:
307
and record_data.record is not None
308
):
309
yield Record(
310
- data=record_data.record.data,
+ data=record_data.record.data or {},
311
stream_name=self.stream_name(),
312
associated_slice=self._slice, # type: ignore [arg-type]
313
)
0 commit comments