From 4bda18a6b59ddf644d400cc00706e2c91f8563d6 Mon Sep 17 00:00:00 2001 From: Pratibha Shrivastav Date: Mon, 8 Sep 2025 16:13:55 +0530 Subject: [PATCH 1/2] pylint fix --- src/machinelearningservices/HISTORY.rst | 7 ++++++- .../azext_mlv2/manual/custom/compute.py | 4 +++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/machinelearningservices/HISTORY.rst b/src/machinelearningservices/HISTORY.rst index 72821c13d93..64233e2ce96 100644 --- a/src/machinelearningservices/HISTORY.rst +++ b/src/machinelearningservices/HISTORY.rst @@ -3,6 +3,11 @@ Release History =============== -2.38.0 +2.39.0 +++++++ +* Fix a bug compute update which caused Enable SSO property to reset. +* Fix proxy endpoint path + +2.38.1 ++++++ * 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()) From 4a6f702712142f1f9c48258be941a5acf3fdb690 Mon Sep 17 00:00:00 2001 From: Pratibha Shrivastav Date: Mon, 8 Sep 2025 21:15:50 +0530 Subject: [PATCH 2/2] revert unwanted change --- src/machinelearningservices/HISTORY.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/machinelearningservices/HISTORY.rst b/src/machinelearningservices/HISTORY.rst index 64233e2ce96..be67d716394 100644 --- a/src/machinelearningservices/HISTORY.rst +++ b/src/machinelearningservices/HISTORY.rst @@ -8,6 +8,6 @@ Release History * Fix a bug compute update which caused Enable SSO property to reset. * Fix proxy endpoint path -2.38.1 +2.38.0 ++++++ * Fix a bug compute update which caused Enable SSO property to reset. \ No newline at end of file