diff --git a/src/machinelearningservices/HISTORY.rst b/src/machinelearningservices/HISTORY.rst index 72821c13d93..be67d716394 100644 --- a/src/machinelearningservices/HISTORY.rst +++ b/src/machinelearningservices/HISTORY.rst @@ -3,6 +3,11 @@ Release History =============== +2.39.0 +++++++ +* Fix a bug compute update which caused Enable SSO property to reset. +* Fix proxy endpoint path + 2.38.0 ++++++ * Fix a bug compute update which caused Enable SSO property to reset. \ No newline at end of file diff --git a/src/machinelearningservices/azext_mlv2/manual/custom/compute.py b/src/machinelearningservices/azext_mlv2/manual/custom/compute.py index 4a16d9825cc..7d75b802412 100644 --- a/src/machinelearningservices/azext_mlv2/manual/custom/compute.py +++ b/src/machinelearningservices/azext_mlv2/manual/custom/compute.py @@ -279,7 +279,9 @@ def ml_compute_connect_ssh(cmd, resource_group_name, workspace_name, name, priva services_dict = { "ssh": ServiceInstance(type="SSH", status="Running", properties={"ProxyEndpoint": proxyEndpoint}) } - path_has_space, ssh_command = get_ssh_command(services_dict, 0, private_key_file_path, connector_args=["--is-compute"]) + path_has_space, ssh_command = get_ssh_command( + services_dict, 0, private_key_file_path, connector_args=["--is-compute"] + ) print(f"ssh_command: {ssh_command}") if path_has_space: module_logger.error(ssh_connector_file_path_space_message())