Fix example not to background

This commit is contained in:
Dickson Tsai 2025-08-29 19:53:36 -07:00
parent b3718cde80
commit cc81142feb
No known key found for this signature in database

View file

@ -429,8 +429,8 @@ async def example_error_handling():
await client.connect()
# Send a message that will take time to process
print("User: Run a bash sleep command for 60 seconds")
await client.query("Run a bash sleep command for 60 seconds")
print("User: Run a bash sleep command for 60 seconds not in the background")
await client.query("Run a bash sleep command for 60 seconds not in the background")
# Try to receive response with a short timeout
try: