diff --git a/core/src/main/golang/proxy/http.go b/core/src/main/golang/proxy/http.go
index 280d5e9548ebe039c0b7fcee0882473fb987cb8f..3eef3f74a2034aa00e1653099cd531756df37876 100644
--- a/core/src/main/golang/proxy/http.go
+++ b/core/src/main/golang/proxy/http.go
@@ -13,7 +13,7 @@ import (
 )
 
 const (
-	LocalHttpTimeout = time.Millisecond * 100
+	LocalHttpTimeout = time.Minute * 5
 )
 
 var listener *httpListener
@@ -55,7 +55,7 @@ func Start(listen string) (listenAt string, err error) {
 
 			_ = conn.(*net.TCPConn).SetKeepAlive(false)
 
-			h.handleConn(conn)
+			go h.handleConn(conn)
 		}
 	}()