Skip to content
This repository has been archived by the owner on Dec 17, 2023. It is now read-only.

Commit

Permalink
fix: increased timeout to 600 (#402)
Browse files Browse the repository at this point in the history
  • Loading branch information
b-loved-dreamer committed Sep 29, 2021
1 parent 2126dc9 commit 148afc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/snippets/participant_management.py
Expand Up @@ -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))
Expand Down

0 comments on commit 148afc6

Please sign in to comment.