From ec2b0ac90d9d1ddda5e215d804decc8431bc8bfc Mon Sep 17 00:00:00 2001 From: Chris Meyers Date: Thu, 29 Sep 2016 16:01:15 -0400 Subject: [PATCH] add back in removed method --- awx/main/tasks.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/awx/main/tasks.py b/awx/main/tasks.py index 07cd7df835..6dbac70108 100644 --- a/awx/main/tasks.py +++ b/awx/main/tasks.py @@ -305,6 +305,10 @@ class BaseTask(Task): logger.error('Failed to update %s after %d retries.', self.model._meta.object_name, _attempt) + def signal_finished(self, pk): + pass + # notify_task_runner(dict(complete=pk)) + def get_path_to(self, *args): ''' Return absolute path relative to this file.