feat: update rxtx log

This commit is contained in:
ziesorx 2025-09-23 15:44:09 +07:00
parent cbbed3d933
commit 8222e82dd7
4 changed files with 28 additions and 32 deletions

View file

@ -9,7 +9,7 @@ import time
async def test_protocol():
"""Test the worker protocol implementation"""
uri = "ws://localhost:8000"
uri = "ws://localhost:8001"
try:
async with websockets.connect(uri) as websocket:
@ -119,7 +119,7 @@ async def test_protocol():
except Exception as e:
print(f"✗ Connection failed: {e}")
print("Make sure the worker is running on localhost:8000")
print("Make sure the worker is running on localhost:8001")
if __name__ == "__main__":
asyncio.run(test_protocol())