From 684e548134643975d38213c017ac4cdb5577a8c0 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Thu, 6 Jun 2024 13:26:58 +0800 Subject: [PATCH] 1 --- httpclimgr.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/httpclimgr.go b/httpclimgr.go index d7ca04b..479ef88 100644 --- a/httpclimgr.go +++ b/httpclimgr.go @@ -297,7 +297,11 @@ func (this *httpCliMgr) internalSendGetOrPost( } } } - go doFunc() + if style == GO_STYLE_REQUEST { + doFunc() + } else { + go doFunc() + } return handle }