Commit a918a1bd by Brian Coca

now calls correct v2_on_any callback method

parent f9d817e6
......@@ -296,7 +296,7 @@ class TaskQueueManager:
continue
methods = [
getattr(callback_plugin, method_name, None),
getattr(callback_plugin, 'on_any', None)
getattr(callback_plugin, 'v2_on_any', None)
]
for method in methods:
if method is not None:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment