From eec08fdccaaf475501d16b4721ed865277ccd4f3 Mon Sep 17 00:00:00 2001 From: AlanCoding Date: Wed, 8 Jan 2020 15:49:28 -0500 Subject: [PATCH] Log case of duplicate UUIDs --- awx/main/dispatch/pool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/dispatch/pool.py b/awx/main/dispatch/pool.py index fc917a7f6d..2351f90c3f 100644 --- a/awx/main/dispatch/pool.py +++ b/awx/main/dispatch/pool.py @@ -132,7 +132,7 @@ class PoolWorker(object): # when this occurs, it's _fine_ to ignore this KeyError because # the purpose of self.managed_tasks is to just track internal # state of which events are *currently* being processed. - pass + logger.warn('Event UUID {} appears to be have been duplicated.'.format(uuid)) @property def current_task(self):