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 23, 2023
1 parent f6fdde0 commit c8d6c2f
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 c8d6c2f

Please sign in to comment.