Skip to content

Commit

Permalink
Add new timeout run error type (#433)
Browse files Browse the repository at this point in the history
* Add local testing examples to .gitignore

* Add new ContainerRunErrorType value

* VB
  • Loading branch information
rossgray authored Mar 15, 2024
1 parent f5d1d7f commit 5ee353c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,14 @@ pipeline-bak/

.DS_Store
.tmp

# Examples
examples/docker/docker-compose.yml
examples/docker/Dockerfile
examples/docker/*.graph
examples/docker/requirements.txt
examples/testing/

.tmp_cache/
*.jsonl

Expand Down
1 change: 1 addition & 0 deletions pipeline/cloud/schemas/runs.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ class ContainerRunErrorType(str, Enum):
pipeline_error = "pipeline_error"
startup_error = "startup_error"
pipeline_loading = "pipeline_loading"
timeout = "timeout"
unknown = "unknown"


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pipeline-ai"
version = "2.0.22"
version = "2.0.23"
description = "Pipelines for machine learning workloads."
authors = [
"Paul Hetherington <ph@mystic.ai>",
Expand Down

0 comments on commit 5ee353c

Please sign in to comment.