We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 725e262 commit d9aba9cCopy full SHA for d9aba9c
airbyte/destinations/base.py
@@ -265,7 +265,7 @@ def _write_airbyte_message_stream(
265
with as_temp_files(
266
files_contents=[
267
self._hydrated_config,
268
- catalog_provider.configured_catalog.model_dump_json(),
+ catalog_provider.configured_catalog.model_dump_json(exclude_none=True),
269
]
270
) as [
271
config_file,
airbyte/sources/base.py
@@ -752,7 +752,7 @@ def _read_with_catalog(
752
753
[
754
755
- catalog.model_dump_json(),
+ catalog.model_dump_json(exclude_none=True),
756
state.to_state_input_file_text() if state else "[]",
757
758
0 commit comments