Commit a3cf962a authored by Raphael Defosseux's avatar Raphael Defosseux

fix(ci): adding a bit of delay after vpp-upf deployment

Signed-off-by: default avatarRaphael Defosseux <raphael.defosseux@eurecom.fr>
parent 39b6f507
......@@ -91,6 +91,7 @@ def deployObject(service, tag, compose_file):
if service == 'gnbsim-vpp':
logging.info ('Not available for the moment')
time.sleep(10)
return
if not os.path.isdir('./archives'):
......@@ -152,6 +153,9 @@ def deployObject(service, tag, compose_file):
nb_healthy += 1
if nb_healthy == expect_healthy:
logging.info('OK')
# Adding a tempo for VPP-UPF to be fully ready
if service == 'vpp-upf':
time.sleep(10)
elif cnt > 50:
logging.error('KO')
sys.exit(-1)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment