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 logging
import re
from multiprocessing import Process, Queue
import click
import jsonschema
from inventory_provider import constants
from inventory_provider import snmp
......@@ -43,7 +41,7 @@ def get_router_details(router, params, q):
]
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()
commands_proc_queue = Queue()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment