added support Lithium version of ODL where user is mandatory to run the

odl command.
This commit is contained in:
Narinder Gupta (for canonical email id) 2015-11-17 09:53:40 -06:00
parent bfe67f9b13
commit a07539c2f5

View File

@ -76,9 +76,9 @@ def write_mvn_config():
@retry_on_exception(5, base_delay=10, exc_type=subprocess.CalledProcessError)
def run_odl(cmds, host="localhost", port=8101, retries=20):
def run_odl(cmds, host="localhost", port=8101, retries=20, user="karaf"):
run_cmd = ["/opt/opendaylight-karaf/bin/client", "-r", str(retries),
"-h", host, "-a", str(port)]
"-h", host, "-a", str(port), "-u", str(user)]
run_cmd.extend(cmds)
output = subprocess.check_output(run_cmd)
return output