diff --git a/pipeline/cloud/schemas/runs.py b/pipeline/cloud/schemas/runs.py index 156ba22b..8b79fd2f 100644 --- a/pipeline/cloud/schemas/runs.py +++ b/pipeline/cloud/schemas/runs.py @@ -271,6 +271,9 @@ class ClusterRunResult(ContainerRunResult): state: RunState + # queue position if run is in 'queued' state + queue_position: int | None = None + class Config: orm_mode = True diff --git a/pyproject.toml b/pyproject.toml index abdc5592..81fe6ab1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pipeline-ai" -version = "2.1.4" +version = "2.1.5" description = "Pipelines for machine learning workloads." authors = [ "Paul Hetherington ",