1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 03:05:05 +08:00

fix(net/gclient): remove default discovery for gclient when Discovery feature enabled (#4174)

This commit is contained in:
John Guo 2025-03-03 16:43:21 +08:00 committed by GitHub
parent 4a65e7a629
commit f4074cd815
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 10 additions and 18 deletions

View File

@ -33,9 +33,8 @@ version:
.PHONY: subup
subup:
@set -e; \
cd examples; \
echo "Updating submodules..."; \
git pull origin; \
cd examples && git pull origin main; \
cd ..;
# update and commit submodules

View File

@ -45,6 +45,7 @@ func Test_HTTP_Registry(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
client := g.Client()
client.SetDiscovery(gsvc.GetRegistry())
client.SetPrefix(fmt.Sprintf("http://%s", svcName))
// GET
t.Assert(client.GetContent(ctx, "/http-registry"), svcName)
@ -71,6 +72,7 @@ func Test_HTTP_Discovery_Disable(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
client := g.Client()
client.SetDiscovery(gsvc.GetRegistry())
client.SetPrefix(fmt.Sprintf("http://%s", svcName))
result, err := client.Get(ctx, "/http-registry")
defer result.Close()

@ -1 +1 @@
Subproject commit a4a36715aa01a720f136536c772028ddeaff213d
Subproject commit 2544fee34dd10e6914687f7335bd9e772215ce07

View File

@ -72,7 +72,7 @@ func New() *Client {
header: make(map[string]string),
cookies: make(map[string]string),
builder: gsel.GetBuilder(),
discovery: gsvc.GetRegistry(),
discovery: nil,
}
c.header[httpHeaderUserAgent] = defaultClientAgent
// It enables OpenTelemetry for client in default.

View File

@ -16,7 +16,6 @@ import (
"github.com/gogf/gf/v2/internal/intlog"
"github.com/gogf/gf/v2/net/gsel"
"github.com/gogf/gf/v2/net/gsvc"
"github.com/gogf/gf/v2/text/gstr"
)
type discoveryNode struct {
@ -39,7 +38,7 @@ var clientSelectorMap = gmap.New(true)
// internalMiddlewareDiscovery is a client middleware that enables service discovery feature for client.
func internalMiddlewareDiscovery(c *Client, r *http.Request) (response *Response, err error) {
if c.discovery == nil && !isServiceName(r.URL.Host) {
if c.discovery == nil {
return c.Next(r)
}
var (
@ -107,11 +106,3 @@ func updateSelectorNodesByService(ctx context.Context, selector gsel.Selector, s
}
return selector.Update(ctx, nodes)
}
// isServiceName checks and returns whether given input parameter is service name or not.
// It checks by whether the parameter is address by containing port delimiter character ':'.
//
// It does not contain any port number if using service discovery.
func isServiceName(serviceNameOrAddress string) bool {
return !gstr.Contains(serviceNameOrAddress, gsvc.EndpointHostPortDelimiter)
}

View File

@ -367,7 +367,7 @@ func bindVarToStructField(
customConverterInput reflect.Value
ok bool
)
if cachedFieldInfo.IsCustomConvert {
if cachedFieldInfo.HasCustomConvert {
if customConverterInput, ok = srcValue.(reflect.Value); !ok {
customConverterInput = reflect.ValueOf(srcValue)
}

View File

@ -50,8 +50,8 @@ type CachedFieldInfoBase struct {
// Purpose: reduce the interface asserting cost in runtime.
IsCommonInterface bool
// IsCustomConvert marks there custom converting function for this field type.
IsCustomConvert bool
// HasCustomConvert marks there custom converting function for this field type.
HasCustomConvert bool
// StructField is the type info of this field.
StructField reflect.StructField

View File

@ -99,7 +99,7 @@ func (csi *CachedStructInfo) makeCachedFieldInfo(
StructField: field,
FieldIndexes: fieldIndexes,
ConvertFunc: csi.genFieldConvertFunc(field.Type.String()),
IsCustomConvert: csi.checkTypeHasCustomConvert(field.Type),
HasCustomConvert: csi.checkTypeHasCustomConvert(field.Type),
PriorityTagAndFieldName: csi.genPriorityTagAndFieldName(field, priorityTags),
RemoveSymbolsFieldName: utils.RemoveSymbols(field.Name),
}