From 148afc65b89bc0505eb6e4d8ff4adc626f0ef107 Mon Sep 17 00:00:00 2001 From: Franklin Nunez <69214580+b-loved-dreamer@users.noreply.github.com> Date: Wed, 29 Sep 2021 08:02:01 -0700 Subject: [PATCH] fix: increased timeout to 600 (#402) --- samples/snippets/participant_management.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/snippets/participant_management.py b/samples/snippets/participant_management.py index 55c13ce17..552c4a8fd 100644 --- a/samples/snippets/participant_management.py +++ b/samples/snippets/participant_management.py @@ -36,7 +36,7 @@ def create_participant(project_id, conversation_id, role): ) if role in ROLES: response = client.create_participant( - parent=conversation_path, participant={"role": role}, timeout=400 + parent=conversation_path, participant={"role": role}, timeout=600 ) print("Participant Created.") print("Role: {}".format(response.role))