From e09cd4b80f79d21b15071375650d38b3031e5e59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20Bo=CC=88rlin?= <11892708+SamuelBoerlin@users.noreply.github.com> Date: Tue, 7 May 2024 15:32:26 +0200 Subject: [PATCH] fix: fix ark resolver not working --- src/ark.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ark.py b/src/ark.py index 88ab9b7..d9c4401 100755 --- a/src/ark.py +++ b/src/ark.py @@ -45,6 +45,8 @@ ################################################################################################# # Server implementation. +Sanic.start_method = "fork" + app = Sanic('ark_resolver') CORS(app)