now calls correct v2_on_any callback method
parent
f9d817e636
commit
a918a1bd16
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue