From c10685e2e6608dc1bbb346105ea86e4621272df4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0pl=C3=ADchal?= Date: Wed, 28 Feb 2024 09:23:35 +0100 Subject: [PATCH] remove: Try to reproduce the issue --- tmt/steps/provision/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tmt/steps/provision/__init__.py b/tmt/steps/provision/__init__.py index 7c73561c2e..e1fdfefbef 100644 --- a/tmt/steps/provision/__init__.py +++ b/tmt/steps/provision/__init__.py @@ -1292,7 +1292,8 @@ def _ssh_options(self) -> Command: # Prevents issues like https://github.com/teemtee/tmt/issues/2687 # from happening and makes the ssh connection more robust # by allowing proper re-try mechanisms to kick-in - options.extend(['-oPasswordAuthentication=no']) + # options.extend(['-oPasswordAuthentication=no']) + pass # Use the shared master connection options.append(f'-S{self._ssh_socket()}')