Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/machinelearningservices/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down