We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 311cf74 commit c465171Copy full SHA for c465171
dashboard/agent.py
@@ -7,6 +7,7 @@
7
import sys
8
import socket
9
import json
10
+import time
11
import traceback
12
13
import aiohttp
@@ -296,6 +297,16 @@ async def _check_parent():
296
297
max_bytes=args.logging_rotate_bytes,
298
backup_count=args.logging_rotate_backup_count)
299
300
+ # The dashboard is currently broken on Windows.
301
+ # https://github.com/ray-project/ray/issues/14026.
302
+ if sys.platform == "win32":
303
+ logger.warning(
304
+ "The dashboard is currently disabled on windows."
305
+ "See https://github.com/ray-project/ray/issues/14026"
306
+ "for more details")
307
+ while True:
308
+ time.sleep(999)
309
+
310
agent = DashboardAgent(
311
args.node_ip_address,
312
args.redis_address,
0 commit comments