diff --git a/supervisor/__main__.py b/supervisor/__main__.py index 56557bd84..c4e5711e7 100644 --- a/supervisor/__main__.py +++ b/supervisor/__main__.py @@ -28,7 +28,8 @@ if __name__ == "__main__": bootstrap.initialize_logging() # Init async event loop - loop = asyncio.get_event_loop() + loop = asyncio.new_event_loop() + asyncio.set_event_loop(loop) # Check if all information are available to setup Supervisor bootstrap.check_environment()