From 29418b51d28806b1f2b25a9c537661bdd9af913d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Fri, 5 Oct 2018 15:35:37 +0200 Subject: [PATCH] double waiting time for provisionning system to create user (#27040) --- welco/contacts/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/welco/contacts/views.py b/welco/contacts/views.py index d173c3c..f2fe2d6 100644 --- a/welco/contacts/views.py +++ b/welco/contacts/views.py @@ -146,7 +146,7 @@ class ContactAdd(FormView): headers={'Content-type': 'application/json'}) user_uuid = authentic_response.json().get('uuid') - for i in range(50): + for i in range(100): try: user_details = get_wcs_data('api/users/%s/' % user_uuid) result = {'data': {'user_id': user_details.get('id')}}