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.
2 parents e030940 + 4dfc8de commit 63f015eCopy full SHA for 63f015e
libs/python/computer-server/computer_server/cli.py
@@ -72,7 +72,7 @@ def main() -> None:
72
73
# Check if watchdog should be enabled
74
container_name = os.environ.get("CONTAINER_NAME")
75
- enable_watchdog = args.watchdog or bool(container_name)
+ enable_watchdog = (args.watchdog or bool(container_name)) and not sys.platform.startswith("win")
76
77
if container_name:
78
logger.info(f"Container environment detected (CONTAINER_NAME={container_name}), enabling watchdog")
0 commit comments