Skip to content

Commit 161a68d

Browse files
examples
1 parent ececa6c commit 161a68d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

examples/binance_websocket_stream_signals/binance_websocket_stream_signals.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,8 @@ async def main(self):
2727
await asyncio.sleep(3)
2828
print(f"\r\nExample of a healthy stream:")
2929
stream_id = self.ubwa.create_stream(channels="trade", markets="btcusdt", stream_label="HEALTHY")
30-
await asyncio.sleep(2)
31-
print(f"Waiting 5 seconds and then stop the stream ...")
32-
await asyncio.sleep(5)
30+
print(f"Waiting 10 seconds and then stop the stream ...")
31+
await asyncio.sleep(10)
3332
self.ubwa.stop_stream(stream_id=stream_id)
3433
await asyncio.sleep(5)
3534

0 commit comments

Comments
 (0)