This commit is contained in:
aozhiwei 2024-06-06 13:26:58 +08:00
parent dcd28f7e45
commit 684e548134

View File

@ -297,7 +297,11 @@ func (this *httpCliMgr) internalSendGetOrPost(
}
}
}
go doFunc()
if style == GO_STYLE_REQUEST {
doFunc()
} else {
go doFunc()
}
return handle
}