diff --git a/awx/main/dispatch/pool.py b/awx/main/dispatch/pool.py index f700656ea4..a102ff0b03 100644 --- a/awx/main/dispatch/pool.py +++ b/awx/main/dispatch/pool.py @@ -344,10 +344,6 @@ class AutoscalePool(WorkerPool): # max workers can't be less than min_workers self.max_workers = max(self.min_workers, self.max_workers) - def debug(self, *args, **kwargs): - self.cleanup() - return super(AutoscalePool, self).debug(*args, **kwargs) - @property def should_grow(self): if len(self.workers) < self.min_workers: