Cut down on log noise

This commit is contained in:
Daniel A. Wozniak 2019-08-18 07:37:24 +00:00
parent 27d89bda2f
commit e572711431
No known key found for this signature in database
GPG Key ID: 166B9D2C06C82D61
2 changed files with 1 additions and 2 deletions

View File

@ -623,7 +623,6 @@ class IPCMessageSubscriber(IPCClient):
except tornado.gen.TimeoutError:
raise tornado.gen.Return(None)
log.debug('IPC Subscriber is starting reading')
exc_to_raise = None
ret = None
try:

View File

@ -543,7 +543,6 @@ class SaltEvent(object):
# IPCMessageSubscriber.read_sync() uses this type of timeout.
if not self.cpub and not self.connect_pub(timeout=wait):
break
raw = self.subscriber.read_sync(timeout=wait)
if raw is None:
break
@ -625,6 +624,7 @@ class SaltEvent(object):
request, it MUST subscribe the result to ensure the response is not lost
should other regions of code call get_event for other purposes.
'''
log.trace("Get event. tag: %s", tag)
assert self._run_io_loop_sync
match_func = self._get_match_func(match_type)