There was an error while loading. Please reload this page.
1 parent 426ab5b commit ef97304Copy full SHA for ef97304
airbyte_cdk/sources/declarative/async_job/job_orchestrator.py
@@ -437,10 +437,10 @@ def create_and_get_completed_partitions(self) -> Iterable[AsyncPartition]:
437
yield from self._process_running_partitions_and_yield_completed_ones()
438
self._wait_on_status_update()
439
except Exception as exception:
440
+ LOGGER.warning(
441
+ f"Caught exception that stops the processing of the jobs: {exception}. Traceback: {traceback.format_exc()}"
442
+ )
443
if self._is_breaking_exception(exception):
- LOGGER.warning(
- f"Caught exception that stops the processing of the jobs: {exception}"
- )
444
self._abort_all_running_jobs()
445
raise exception
446
0 commit comments