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 e7b2cd7 commit 6d75a92Copy full SHA for 6d75a92
airbyte_cdk/sources/concurrent_source/concurrent_source.py
@@ -146,7 +146,7 @@ def _consume_from_queue(
146
while airbyte_message_or_record_or_exception := queue.get():
147
test_env = os.getenv("PYTEST_CURRENT_TEST")
148
if test_env and "test_concurrent_declarative_source.py" in test_env:
149
- self._logger.info(f"Processing and emitting: {airbyte_message_or_record_or_exception.__dict__}")
+ self._logger.info(f"Processing and emitting {type(airbyte_message_or_record_or_exception)}: {airbyte_message_or_record_or_exception.__dict__}")
150
yield from self._handle_item(
151
airbyte_message_or_record_or_exception,
152
concurrent_stream_processor,
0 commit comments