Skip to content

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 authored and Eric Schmidt committed Mar 13, 2023
1 parent 0b834e6 commit f3a1eb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dialogflow/participant_management.py
Original file line number Diff line number Diff line change
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 f3a1eb1

Please sign in to comment.