aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/steps/onboard/service.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/onaptests/steps/onboard/service.py')
-rw-r--r--src/onaptests/steps/onboard/service.py9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/onaptests/steps/onboard/service.py b/src/onaptests/steps/onboard/service.py
index b591f8d..6300a43 100644
--- a/src/onaptests/steps/onboard/service.py
+++ b/src/onaptests/steps/onboard/service.py
@@ -69,13 +69,8 @@ class ServiceOnboardStep(BaseStep):
# checkin is done if needed
# If service is replayed, no need to try to re-onboard the model
if not service.distributed:
- try:
- service.checkin()
- except (APIError, ResourceNotFound):
- # Retry as checkin may be a bit long
- # Temp workaround to avoid internal race in SDC
- time.sleep(5)
- service.checkin()
+ time.sleep(30)
+ service.checkin()
service.onboard()