Take paramiko 2.9.+ breaking changes into account 13/75013/1
authorCédric Ollivier <cedric.ollivier@orange.com>
Sun, 12 Oct 2025 13:46:25 +0000 (15:46 +0200)
committerCédric Ollivier <cedric.ollivier@orange.com>
Mon, 13 Oct 2025 07:59:03 +0000 (09:59 +0200)
https://github.com/paramiko/paramiko/issues/2143

Change-Id: I698532f618852768a179bf983d0816eeac96d364
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
functest/core/singlevm.py

index 7bb4e16..64c31bb 100644 (file)
@@ -433,6 +433,9 @@ class SingleVm1(VmReady1):
                         config.CONF,
                         f'{self.case_name}_image_user', self.username),
                     key_filename=self.key_filename,
+                    disabled_algorithms={
+                        "pubkeys": ["rsa-sha2-256", "rsa-sha2-512"]
+                    },
                     timeout=getattr(
                         config.CONF,
                         f'{self.case_name}_vm_ssh_connect_timeout',