From 1ec11e8963293864b0b451277df145f915e788b6 Mon Sep 17 00:00:00 2001 From: Shiny Nematoda Date: Fri, 17 Mar 2023 07:43:19 +0000 Subject: [PATCH] Disable prefork --- main.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/main.go b/main.go index 0269e88..e45ac79 100644 --- a/main.go +++ b/main.go @@ -95,9 +95,7 @@ func main() { os.Exit(1) } - app := fiber.New(fiber.Config{ - Prefork: true, - }) + app := fiber.New() app.Use(SetHeaders) app.Use(recover.New())