diff options
author | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2021-06-16 06:43:54 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-06-16 06:43:54 +0000 |
commit | 82e85e1f9436f02e99ce81ef405bb3516c81ab9e (patch) | |
tree | 3701f38fd666ce154a983652eba3a7bb34fdbefe /src/onaptests/steps/onboard/vf.py | |
parent | 95188a357bc3541b0520388283838606b1ca5915 (diff) | |
parent | afa8fdc97eb3b8e76755c5ef3224b9e4b5aa9e4f (diff) |
Merge "[OPTIM] Tune SDC delay before certification"
Diffstat (limited to 'src/onaptests/steps/onboard/vf.py')
-rw-r--r-- | src/onaptests/steps/onboard/vf.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/onaptests/steps/onboard/vf.py b/src/onaptests/steps/onboard/vf.py index c6582dd..7e4882e 100644 --- a/src/onaptests/steps/onboard/vf.py +++ b/src/onaptests/steps/onboard/vf.py @@ -1,3 +1,5 @@ +import time + from onapsdk.configuration import settings from onapsdk.sdc.vf import Vf from onapsdk.sdc.vsp import Vsp @@ -98,4 +100,5 @@ class YamlTemplateVfOnboardStep(YamlTemplateBaseStep): artifact_label=vnf["vnf_artifact_label"], artifact=vnf["vnf_artifact_file_path"] ) + time.sleep(10) vf.onboard() |