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 ab2e59e commit 91ae327Copy full SHA for 91ae327
src/firebolt/model/V2/engine.py
@@ -109,7 +109,11 @@ def _wait_for_start_stop(self) -> None:
109
wait_timeout = 3600
110
interval_seconds = 5
111
timeout_time = time.time() + wait_timeout
112
- while self.current_status in (EngineStatus.STOPPING, EngineStatus.STARTING):
+ while self.current_status in (
113
+ EngineStatus.DRAINING,
114
+ EngineStatus.STOPPING,
115
+ EngineStatus.STARTING,
116
+ ):
117
logger.info(
118
f"Engine {self.name} is currently "
119
f"{self.current_status.value.lower()}, waiting"
0 commit comments