airbyte-cdk 0.63.0__py3-none-any.whl → 0.63.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- airbyte_cdk/sources/file_based/stream/concurrent/adapters.py +3 -0
- {airbyte_cdk-0.63.0.dist-info → airbyte_cdk-0.63.1.dist-info}/METADATA +1 -1
- {airbyte_cdk-0.63.0.dist-info → airbyte_cdk-0.63.1.dist-info}/RECORD +6 -6
- {airbyte_cdk-0.63.0.dist-info → airbyte_cdk-0.63.1.dist-info}/LICENSE.txt +0 -0
- {airbyte_cdk-0.63.0.dist-info → airbyte_cdk-0.63.1.dist-info}/WHEEL +0 -0
- {airbyte_cdk-0.63.0.dist-info → airbyte_cdk-0.63.1.dist-info}/top_level.txt +0 -0
@@ -243,6 +243,9 @@ class FileBasedStreamPartition(Partition):
|
|
243
243
|
data_to_return = dict(record_data)
|
244
244
|
self._stream.transformer.transform(data_to_return, self._stream.get_json_schema())
|
245
245
|
yield Record(data_to_return, self.stream_name())
|
246
|
+
elif isinstance(record_data, AirbyteMessage) and record_data.type == Type.RECORD:
|
247
|
+
# `AirbyteMessage`s of type `Record` should also be yielded so they are enqueued
|
248
|
+
yield Record(record_data.record.data, self.stream_name())
|
246
249
|
else:
|
247
250
|
self._message_repository.emit_message(record_data)
|
248
251
|
except Exception as e:
|
@@ -186,7 +186,7 @@ airbyte_cdk/sources/file_based/stream/__init__.py,sha256=QPDqdgjsabOQD93dSFqHGaF
|
|
186
186
|
airbyte_cdk/sources/file_based/stream/abstract_file_based_stream.py,sha256=cmO1SQt5PIQRNNoh2KBv6aeY8NEY9x2dlmiRwGwU1vg,6557
|
187
187
|
airbyte_cdk/sources/file_based/stream/default_file_based_stream.py,sha256=qS0DJzXlVew6armFDJ0eNcSxRCmkA7JWQYFl6gcv3dU,13113
|
188
188
|
airbyte_cdk/sources/file_based/stream/concurrent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
189
|
-
airbyte_cdk/sources/file_based/stream/concurrent/adapters.py,sha256=
|
189
|
+
airbyte_cdk/sources/file_based/stream/concurrent/adapters.py,sha256=rjf8htUotdAXWSGcFA0jFHJfaai_EnmQxncnxMWTN2A,13320
|
190
190
|
airbyte_cdk/sources/file_based/stream/concurrent/cursor/__init__.py,sha256=WKEYXZwSla6xwp7k1mnyG3kl9xCzEZ9B3eE-cxIuzIM,310
|
191
191
|
airbyte_cdk/sources/file_based/stream/concurrent/cursor/abstract_concurrent_file_based_cursor.py,sha256=UYLE2A2RdV-5FaQ70naZZWY34l5AEJkIRlTH05-e_-k,1961
|
192
192
|
airbyte_cdk/sources/file_based/stream/concurrent/cursor/file_based_concurrent_cursor.py,sha256=jHiej28aKQJ3UmWXQxHRCK8xkzY5H0-zxQiVqFs5rAI,14389
|
@@ -456,8 +456,8 @@ unit_tests/utils/test_schema_inferrer.py,sha256=Z2jHBZ540wnYkylIdV_2xr75Vtwlxuyg
|
|
456
456
|
unit_tests/utils/test_secret_utils.py,sha256=CdKK8A2-5XVxbXVtX22FK9dwwMeP5KNqDH6luWRXSNw,5256
|
457
457
|
unit_tests/utils/test_stream_status_utils.py,sha256=Xr8MZ2HWgTVIyMbywDvuYkRaUF4RZLQOT8-JjvcfR24,2970
|
458
458
|
unit_tests/utils/test_traced_exception.py,sha256=bDFP5zMBizFenz6V2WvEZTRCKGB5ijh3DBezjbfoYIs,4198
|
459
|
-
airbyte_cdk-0.63.
|
460
|
-
airbyte_cdk-0.63.
|
461
|
-
airbyte_cdk-0.63.
|
462
|
-
airbyte_cdk-0.63.
|
463
|
-
airbyte_cdk-0.63.
|
459
|
+
airbyte_cdk-0.63.1.dist-info/LICENSE.txt,sha256=Wfe61S4BaGPj404v8lrAbvhjYR68SHlkzeYrg3_bbuM,1051
|
460
|
+
airbyte_cdk-0.63.1.dist-info/METADATA,sha256=-pgcWwY9lrlm3-6C9BxburyjPpElSbKPAep02SEB-hk,11073
|
461
|
+
airbyte_cdk-0.63.1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
462
|
+
airbyte_cdk-0.63.1.dist-info/top_level.txt,sha256=edvsDKTnE6sD2wfCUaeTfKf5gQIL6CPVMwVL2sWZzqo,51
|
463
|
+
airbyte_cdk-0.63.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|