From 6ec145ea8715946a01e6fda3a1fac0d29aafccc4 Mon Sep 17 00:00:00 2001 From: Josh Carp Date: Tue, 26 Oct 2021 19:18:48 -0400 Subject: [PATCH] fix(sdk): Add missing retry policy. --- sdk/RELEASE.md | 1 + sdk/python/kfp/dsl/_container_op.py | 1 + 2 files changed, 2 insertions(+) diff --git a/sdk/RELEASE.md b/sdk/RELEASE.md index 619925490b1..6db44765f4a 100644 --- a/sdk/RELEASE.md +++ b/sdk/RELEASE.md @@ -17,6 +17,7 @@ * Fix placeholder mapping error in v2. [\#6794](https://github.com/kubeflow/pipelines/pull/6794) * Depends on `kfp-pipeline-spec>=0.1.13,<0.2.0` [\#6803](https://github.com/kubeflow/pipelines/pull/6803) +* Add `OnTransientError` to allowed retry policies [\#6808](https://github.com/kubeflow/pipelines/pull/6808) ## Documentation Updates diff --git a/sdk/python/kfp/dsl/_container_op.py b/sdk/python/kfp/dsl/_container_op.py index acb07011171..f48c13c28f4 100644 --- a/sdk/python/kfp/dsl/_container_op.py +++ b/sdk/python/kfp/dsl/_container_op.py @@ -40,6 +40,7 @@ 'Always', 'OnError', 'OnFailure', + 'OnTransientError', ) # Shorthand for PipelineContainerSpec