Skip to content
Snippets Groups Projects
Commit 391a3268 authored by garciadeblas's avatar garciadeblas
Browse files

debug bug 710: increased wait_time to 30s for init status


Change-Id: I10565f4d63708346a23f9124c931830cb25f86f4
Signed-off-by: default avatargarciadeblas <gerardo.garciadeblas@telefonica.com>
parent 941372e8
No related branches found
No related tags found
No related merge requests found
......@@ -90,7 +90,7 @@ class TestClass(object):
assert osm.get_api().ns.create(nsd_desc['name'],ns_name,vim.vim_name)
if not utils.wait_for_value(lambda: osm.get_api().ns.get_field(ns_name,'operational-status'),result='init', wait_time=10):
if not utils.wait_for_value(lambda: osm.get_api().ns.get_field(ns_name,'operational-status'),result='init', wait_time=30):
nsr=osm.get_api().ns.get(ns_name)
pprint.pprint(nsr)
assert Fail, "operational-status != init"
......@@ -119,7 +119,7 @@ class TestClass(object):
#wait for the ns to delete
try:
utils.wait_for_value( lambda: osm.get_api().ns.get(nsd_desc['name']), result=False, wait_time=180)
utils.wait_for_value( lambda: osm.get_api().ns.get(ns_name), result=False, wait_time=180)
except:
pass
......
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