Skip to content

Commit

Permalink
Add LinkStateTask to task registry
Browse files Browse the repository at this point in the history
  • Loading branch information
lunkwill42 committed Aug 24, 2023
1 parent 792267c commit df35715
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/zino/tasks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ async def run_all_tasks(device, state):

def get_registered_tasks():
from zino.tasks.juniperalarmtask import JuniperAlarmTask
from zino.tasks.linkstatetask import LinkStateTask
from zino.tasks.reachabletask import ReachableTask
from zino.tasks.vendor import VendorTask

return [ReachableTask, VendorTask, JuniperAlarmTask]
return [ReachableTask, VendorTask, LinkStateTask, JuniperAlarmTask]

0 comments on commit df35715

Please sign in to comment.