now calls correct v2_on_any callback method

pull/4420/head
Brian Coca 2015-07-08 19:36:30 -04:00
parent f9d817e636
commit a918a1bd16
1 changed files with 1 additions and 1 deletions

View File

@ -296,7 +296,7 @@ class TaskQueueManager:
continue continue
methods = [ methods = [
getattr(callback_plugin, method_name, None), getattr(callback_plugin, method_name, None),
getattr(callback_plugin, 'on_any', None) getattr(callback_plugin, 'v2_on_any', None)
] ]
for method in methods: for method in methods:
if method is not None: if method is not None: