From 9e70693f13816d250e5244fc892f9e6fb376ee0d Mon Sep 17 00:00:00 2001 From: "Daniel A. Wozniak" Date: Tue, 1 Feb 2022 18:20:16 -0700 Subject: [PATCH] Slow memory leak fix --- salt/transport/zeromq.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/salt/transport/zeromq.py b/salt/transport/zeromq.py index 357fb08553..e8de828cbe 100644 --- a/salt/transport/zeromq.py +++ b/salt/transport/zeromq.py @@ -831,6 +831,8 @@ class ZeroMQPubServerChannel(salt.transport.server.PubServerChannel): """ Bind to the interface specified in the configuration file """ + salt.ext.tornado.ioloop.IOLoop.clear_current() + salt.utils.process.appendproctitle(self.__class__.__name__) if self.opts["pub_server_niceness"] and not salt.utils.platform.is_windows(): -- 2.30.2