From 8f33f1a6c263dcec98ed38ad600381a5a921f91c Mon Sep 17 00:00:00 2001 From: Ryan Petrello Date: Fri, 24 Jan 2020 13:42:13 -0500 Subject: [PATCH] remove another expensive logging lookup in the parent callback process --- awx/main/dispatch/pool.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/awx/main/dispatch/pool.py b/awx/main/dispatch/pool.py index fce8ff7281..17ffe59436 100644 --- a/awx/main/dispatch/pool.py +++ b/awx/main/dispatch/pool.py @@ -72,9 +72,6 @@ class PoolWorker(object): if not body.get('uuid'): body['uuid'] = str(uuid4()) uuid = body['uuid'] - logger.debug('delivered {} to worker[{}] qsize {}'.format( - uuid, self.pid, self.qsize - )) self.managed_tasks[uuid] = body self.queue.put(body, block=True, timeout=5) self.messages_sent += 1