From: Sage Weil Date: Mon, 15 Nov 2021 16:04:30 +0000 (-0500) Subject: mgr/cephadm: turn off asyncssh debug output X-Git-Tag: v17.1.0~413^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F43880%2Fhead;p=ceph.git mgr/cephadm: turn off asyncssh debug output Signed-off-by: Sage Weil --- 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()