From ec45ee471fae67fdc3314ea4acc0f15d65f261a4 Mon Sep 17 00:00:00 2001 From: sejinP <42539506+sejin-P@users.noreply.github.com> Date: Wed, 9 Feb 2022 03:56:04 +0900 Subject: [PATCH] chore: remove GOMAXPROCS setting (#1803) --- main.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/main.go b/main.go index fa8b9136..ab22ef45 100644 --- a/main.go +++ b/main.go @@ -1,12 +1,9 @@ package main import ( - "runtime" - "github.com/filebrowser/filebrowser/v2/cmd" ) func main() { - runtime.GOMAXPROCS(runtime.NumCPU()) cmd.Execute() }