From 89212814d89ceed39627f4773eb9ffb1d58ae77d Mon Sep 17 00:00:00 2001 From: Eldad Fux Date: Thu, 12 Nov 2020 00:02:14 +0200 Subject: [PATCH] Removed sleep --- app/http.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/http.php b/app/http.php index 07e0fff45e..b018d37a12 100644 --- a/app/http.php +++ b/app/http.php @@ -19,8 +19,6 @@ ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL); -sleep(2); - $http = new Server("0.0.0.0", 80); $payloadSize = max(4000000 /* 4mb */, App::getEnv('_APP_STORAGE_LIMIT', 10000000 /* 10mb */));