diff --git a/sdk/RELEASE.md b/sdk/RELEASE.md index 0f204508f02..f824f7df62a 100644 --- a/sdk/RELEASE.md +++ b/sdk/RELEASE.md @@ -11,10 +11,13 @@ ## Deprecations ## Bug Fixes and Other Changes + * Fix duplicate function for `list_pipeline_versions()`. [\#6594](https://github.com/kubeflow/pipelines/pull/6594) * Support re-use of PVC with VolumeOp. [\#6582](https://github.com/kubeflow/pipelines/pull/6582) +* When namespace file is missing, remove stack trace so it doesn't look like an error [\#6590](https://github.com/kubeflow/pipelines/pull/6590) * Local runner supports additional docker options. [\#6599](https://github.com/kubeflow/pipelines/pull/6599) + ## Documentation Updates # 1.8.2 diff --git a/sdk/python/kfp/_client.py b/sdk/python/kfp/_client.py index f60686e221a..4c85a24c585 100644 --- a/sdk/python/kfp/_client.py +++ b/sdk/python/kfp/_client.py @@ -201,7 +201,7 @@ def __init__(self, self.set_user_namespace(current_namespace) except FileNotFoundError: logging.info( - 'Failed to automatically set namespace.', exc_info=True) + 'Failed to automatically set namespace.', exc_info=False) def _load_config(self, host, client_id, namespace, other_client_id, other_client_secret, existing_token, proxy, ssl_ca_cert,