From 49a424fdac823793b846f850755126d8e37c09f9 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Mon, 15 Nov 2021 11:04:30 -0500 Subject: [PATCH] mgr/cephadm: turn off asyncssh debug output Signed-off-by: Sage Weil --- src/pybind/mgr/cephadm/ssh.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/pybind/mgr/cephadm/ssh.py b/src/pybind/mgr/cephadm/ssh.py index eb134960276..0c73b77b571 100644 --- a/src/pybind/mgr/cephadm/ssh.py +++ b/src/pybind/mgr/cephadm/ssh.py @@ -35,10 +35,8 @@ Host * class EventLoopThread(Thread): def __init__(self) -> None: - self._loop = asyncio.new_event_loop() asyncio.set_event_loop(self._loop) - self._loop.set_debug(True) super().__init__(target=self._loop.run_forever) self.start()