MCPcopy
hub / github.com/apache/airflow / wait_until_finished

Method wait_until_finished

airflow/utils/dag_processing.py:947–951  ·  view source on GitHub ↗

Sleeps until all the processors are done.

(self)

Source from the content-addressed store, hash-verified

945 self._processors = filtered_processors
946
947 def wait_until_finished(self):
948 """Sleeps until all the processors are done."""
949 for processor in self._processors.values():
950 while not processor.done:
951 time.sleep(0.1)
952
953 def _collect_results_from_processor(self, processor) -> None:
954 self.log.debug("Processor for %s finished", processor.file_path)

Callers 1

_run_parsing_loopMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected