Skip to content

Commit a693b88

Browse files
Pylint fix + History update (#9143)
* pylint fix * revert unwanted change
1 parent 166e63d commit a693b88

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

src/machinelearningservices/HISTORY.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
Release History
44
===============
55

6+
2.39.0
7+
++++++
8+
* Fix a bug compute update which caused Enable SSO property to reset.
9+
* Fix proxy endpoint path
10+
611
2.38.0
712
++++++
813
* Fix a bug compute update which caused Enable SSO property to reset.

src/machinelearningservices/azext_mlv2/manual/custom/compute.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,9 @@ def ml_compute_connect_ssh(cmd, resource_group_name, workspace_name, name, priva
279279
services_dict = {
280280
"ssh": ServiceInstance(type="SSH", status="Running", properties={"ProxyEndpoint": proxyEndpoint})
281281
}
282-
path_has_space, ssh_command = get_ssh_command(services_dict, 0, private_key_file_path, connector_args=["--is-compute"])
282+
path_has_space, ssh_command = get_ssh_command(
283+
services_dict, 0, private_key_file_path, connector_args=["--is-compute"]
284+
)
283285
print(f"ssh_command: {ssh_command}")
284286
if path_has_space:
285287
module_logger.error(ssh_connector_file_path_space_message())

0 commit comments

Comments
 (0)