Skip to content
Snippets Groups Projects
Commit 1f362f89 authored by Erik Reid's avatar Erik Reid
Browse files

added missing method param

parent 993705ab
No related branches found
No related tags found
No related merge requests found
import json import json
import logging import logging
import re
from multiprocessing import Process, Queue from multiprocessing import Process, Queue
import click import click
import jsonschema
from inventory_provider import constants from inventory_provider import constants
from inventory_provider import snmp from inventory_provider import snmp
...@@ -43,7 +41,7 @@ def get_router_details(router, params, q): ...@@ -43,7 +41,7 @@ def get_router_details(router, params, q):
] ]
snmpifc_proc_queue = Queue() snmpifc_proc_queue = Queue()
snmpifc_proc = Process(target=get_router_interfaces_q, args=(router,snmpifc_proc_queue)) snmpifc_proc = Process(target=get_router_interfaces_q, args=(router, params, snmpifc_proc_queue))
snmpifc_proc.start() snmpifc_proc.start()
commands_proc_queue = Queue() commands_proc_queue = Queue()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment