From 9b5596854a7df626b73dd3efd6ca25750495d642 Mon Sep 17 00:00:00 2001 From: Fabio Buso Date: Tue, 11 Jun 2024 12:03:24 +0200 Subject: [PATCH] [HWORKS-1304] Secret API documentation says you need to provide email to get shared ticket, but you should provide username instead (#207) --- python/hopsworks/core/secret_api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/hopsworks/core/secret_api.py b/python/hopsworks/core/secret_api.py index a39a2dca0..ddecca3f1 100644 --- a/python/hopsworks/core/secret_api.py +++ b/python/hopsworks/core/secret_api.py @@ -46,8 +46,8 @@ def get_secret(self, name: str, owner: str = None): """Get a secret. # Arguments - name: Name of the project. - owner: email of the owner for a secret shared with the current project. + name: Name of the secret. + owner: username of the owner for a secret shared with the current project. Users can find their username in the Account Settings > Profile section. # Returns `Secret`: The Secret object # Raises