From cb5eeaf51b3601d71a8bc43f9b7c5fa0b093f07e Mon Sep 17 00:00:00 2001 From: Vivian Thiebaut Date: Mon, 13 Apr 2026 15:24:27 -0400 Subject: [PATCH] Update error message for when there is a version incompatibility error --- src/ssh/azext_ssh/ssh_utils.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/ssh/azext_ssh/ssh_utils.py b/src/ssh/azext_ssh/ssh_utils.py index ea4a24ec69d..e158bc294c2 100644 --- a/src/ssh/azext_ssh/ssh_utils.py +++ b/src/ssh/azext_ssh/ssh_utils.py @@ -251,14 +251,16 @@ def _check_for_known_errors(error_message, delete_cert, log_lines): (local_major > 8 or (local_major == 8 and local_minor >= 8)): logger.warning("The OpenSSH server version in the target VM %d.%d is too old. " "Version incompatible with OpenSSH client version %d.%d. " - "Refer to https://bugzilla.mindrot.org/show_bug.cgi?id=3351 for more information.", + "Refer to \"Potentially-incompatible changes\" in " + "https://www.openssh.org/txt/release-8.8 for more information.", remote_major, remote_minor, local_major, local_minor) elif (local_major < 7 or (local_major == 7 and local_minor < 8)) and \ (remote_major > 8 or (remote_major == 8 and remote_minor >= 8)): logger.warning("The OpenSSH client version %d.%d is too old. " "Version incompatible with OpenSSH server version %d.%d in the target VM. " - "Refer to https://bugzilla.mindrot.org/show_bug.cgi?id=3351 for more information.", + "Refer to \"Potentially-incompatible changes\" in " + "https://www.openssh.org/txt/release-8.8 for more information.", local_major, local_minor, remote_major, remote_minor) regex = ("{\"level\":\"fatal\",\"msg\":\"sshproxy: error copying information from the connection: "