Skip to content

Commit

Permalink
chore(sdk): Remove stack trace so it doesn't look like an error (#6590)
Browse files Browse the repository at this point in the history
* Stack trace makes it look like an error

* Update RELEASE.md
  • Loading branch information
randombishop authored Sep 24, 2021
1 parent 36e627d commit 95162e2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions sdk/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/kfp/_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 95162e2

Please sign in to comment.