Skip to content

Commit e735343

Browse files
committed
fix: Match e2e test Python client pause to the Typescript one
1 parent f3b779c commit e735343

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

e2e_tests/python/chat_session.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ async def start(self) -> None:
6969

7070
for i, user_input in enumerate(self.user_utterances):
7171
if i != 0:
72-
print("\n**Pausing 15 seconds to avoid Bedrock throttling**")
73-
await asyncio.sleep(15)
72+
print("\n**Pausing 30 seconds to avoid Bedrock throttling**")
73+
await asyncio.sleep(30)
7474

7575
print(f"\nYou: {user_input}")
7676

0 commit comments

Comments
 (0)