Fix up based on PR reviews

This commit is contained in:
Daniel A. Wozniak 2023-05-19 00:29:54 -07:00 committed by Gareth J. Greenaway
parent 1f145c0f6e
commit 5ad05c61cf
2 changed files with 5 additions and 5 deletions

View file

@ -11,8 +11,8 @@ import threading
import traceback
import types
import tornado.gen # pylint: disable=F0401
import tornado.ioloop # pylint: disable=F0401
import tornado.gen
import tornado.ioloop
import salt
import salt._logging
@ -355,7 +355,7 @@ def post_master_init(self, master):
try:
results = yield tornado.gen.multi(waitfor)
except Exception as exc: # pylint: disable=broad-except
log.error("Errors loading sub proxies")
log.error("Errors loading sub proxies: %s", exc)
_failed = self.opts["proxy"].get("ids", [])[:]
for sub_proxy_data in results:

View file

@ -9,8 +9,8 @@ import threading
import traceback
import types
import tornado.gen # pylint: disable=F0401
import tornado.ioloop # pylint: disable=F0401
import tornado.gen
import tornado.ioloop
import salt
import salt.beacons