mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-31 07:03:55 +00:00 
			
		
		
		
	[config] Early termination of validation steps on error (#6837)
This commit is contained in:
		| @@ -139,7 +139,7 @@ class Config(OrderedDict, fv.FinalValidateConfig): | ||||
|         ) | ||||
|  | ||||
|     def run_validation_steps(self): | ||||
|         while self._validation_tasks: | ||||
|         while self._validation_tasks and not self.errors: | ||||
|             task = heapq.heappop(self._validation_tasks) | ||||
|             task.step.run(self) | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user