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 9b0975b commit 5922711Copy full SHA for 5922711
homeassistant/components/go2rtc/server.py
@@ -62,6 +62,7 @@ async def start(self) -> None:
62
config_file,
63
stdout=asyncio.subprocess.PIPE,
64
stderr=asyncio.subprocess.STDOUT,
65
+ close_fds=False, # required for posix_spawn on CPython < 3.13
66
)
67
68
self._hass.async_create_background_task(
tests/components/go2rtc/test_server.py
@@ -67,6 +67,7 @@ async def test_server_run_success(
"test.yaml",
stdout=subprocess.PIPE,
69
stderr=subprocess.STDOUT,
70
+ close_fds=False,
71
72
73
# Verify that the config file was written
0 commit comments