diff --git a/ansys/hps/client/auth/authenticate.py b/ansys/hps/client/auth/authenticate.py index d4f0475ea..0596c39d6 100644 --- a/ansys/hps/client/auth/authenticate.py +++ b/ansys/hps/client/auth/authenticate.py @@ -31,7 +31,7 @@ def authenticate( **kwargs, ): """ - Authenticate user with either password or refresh token against REP authentication service. + Authenticate user with either password or refresh token against HPS authentication service. If successful, the response includes access and refresh tokens. Parameters diff --git a/ansys/hps/client/jms/api/jms_api.py b/ansys/hps/client/jms/api/jms_api.py index 21ea26fea..c601ba920 100644 --- a/ansys/hps/client/jms/api/jms_api.py +++ b/ansys/hps/client/jms/api/jms_api.py @@ -373,7 +373,7 @@ def restore_project(jms_api, archive_path): # Upload archive to FS API archive_name = os.path.basename(archive_path) - bucket = f"rep-client-restore-{uuid.uuid4()}" + bucket = f"hps-client-restore-{uuid.uuid4()}" fs_file_url = f"{jms_api.client.url}/fs/api/v1/{bucket}/{archive_name}" ansfs_file_url = f"ansfs://{bucket}/{archive_name}" # noqa: E231