mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 11:18:50 +08:00
fix(net/gclient): remove default discovery for gclient when Discovery feature enabled (#4174)
This commit is contained in:
parent
4a65e7a629
commit
f4074cd815
3
Makefile
3
Makefile
@ -33,9 +33,8 @@ version:
|
|||||||
.PHONY: subup
|
.PHONY: subup
|
||||||
subup:
|
subup:
|
||||||
@set -e; \
|
@set -e; \
|
||||||
cd examples; \
|
|
||||||
echo "Updating submodules..."; \
|
echo "Updating submodules..."; \
|
||||||
git pull origin; \
|
cd examples && git pull origin main; \
|
||||||
cd ..;
|
cd ..;
|
||||||
|
|
||||||
# update and commit submodules
|
# update and commit submodules
|
||||||
|
@ -45,6 +45,7 @@ func Test_HTTP_Registry(t *testing.T) {
|
|||||||
|
|
||||||
gtest.C(t, func(t *gtest.T) {
|
gtest.C(t, func(t *gtest.T) {
|
||||||
client := g.Client()
|
client := g.Client()
|
||||||
|
client.SetDiscovery(gsvc.GetRegistry())
|
||||||
client.SetPrefix(fmt.Sprintf("http://%s", svcName))
|
client.SetPrefix(fmt.Sprintf("http://%s", svcName))
|
||||||
// GET
|
// GET
|
||||||
t.Assert(client.GetContent(ctx, "/http-registry"), svcName)
|
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) {
|
gtest.C(t, func(t *gtest.T) {
|
||||||
client := g.Client()
|
client := g.Client()
|
||||||
|
client.SetDiscovery(gsvc.GetRegistry())
|
||||||
client.SetPrefix(fmt.Sprintf("http://%s", svcName))
|
client.SetPrefix(fmt.Sprintf("http://%s", svcName))
|
||||||
result, err := client.Get(ctx, "/http-registry")
|
result, err := client.Get(ctx, "/http-registry")
|
||||||
defer result.Close()
|
defer result.Close()
|
||||||
|
2
examples
2
examples
@ -1 +1 @@
|
|||||||
Subproject commit a4a36715aa01a720f136536c772028ddeaff213d
|
Subproject commit 2544fee34dd10e6914687f7335bd9e772215ce07
|
@ -72,7 +72,7 @@ func New() *Client {
|
|||||||
header: make(map[string]string),
|
header: make(map[string]string),
|
||||||
cookies: make(map[string]string),
|
cookies: make(map[string]string),
|
||||||
builder: gsel.GetBuilder(),
|
builder: gsel.GetBuilder(),
|
||||||
discovery: gsvc.GetRegistry(),
|
discovery: nil,
|
||||||
}
|
}
|
||||||
c.header[httpHeaderUserAgent] = defaultClientAgent
|
c.header[httpHeaderUserAgent] = defaultClientAgent
|
||||||
// It enables OpenTelemetry for client in default.
|
// It enables OpenTelemetry for client in default.
|
||||||
|
@ -16,7 +16,6 @@ import (
|
|||||||
"github.com/gogf/gf/v2/internal/intlog"
|
"github.com/gogf/gf/v2/internal/intlog"
|
||||||
"github.com/gogf/gf/v2/net/gsel"
|
"github.com/gogf/gf/v2/net/gsel"
|
||||||
"github.com/gogf/gf/v2/net/gsvc"
|
"github.com/gogf/gf/v2/net/gsvc"
|
||||||
"github.com/gogf/gf/v2/text/gstr"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type discoveryNode struct {
|
type discoveryNode struct {
|
||||||
@ -39,7 +38,7 @@ var clientSelectorMap = gmap.New(true)
|
|||||||
|
|
||||||
// internalMiddlewareDiscovery is a client middleware that enables service discovery feature for client.
|
// internalMiddlewareDiscovery is a client middleware that enables service discovery feature for client.
|
||||||
func internalMiddlewareDiscovery(c *Client, r *http.Request) (response *Response, err error) {
|
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)
|
return c.Next(r)
|
||||||
}
|
}
|
||||||
var (
|
var (
|
||||||
@ -107,11 +106,3 @@ func updateSelectorNodesByService(ctx context.Context, selector gsel.Selector, s
|
|||||||
}
|
}
|
||||||
return selector.Update(ctx, nodes)
|
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)
|
|
||||||
}
|
|
||||||
|
@ -367,7 +367,7 @@ func bindVarToStructField(
|
|||||||
customConverterInput reflect.Value
|
customConverterInput reflect.Value
|
||||||
ok bool
|
ok bool
|
||||||
)
|
)
|
||||||
if cachedFieldInfo.IsCustomConvert {
|
if cachedFieldInfo.HasCustomConvert {
|
||||||
if customConverterInput, ok = srcValue.(reflect.Value); !ok {
|
if customConverterInput, ok = srcValue.(reflect.Value); !ok {
|
||||||
customConverterInput = reflect.ValueOf(srcValue)
|
customConverterInput = reflect.ValueOf(srcValue)
|
||||||
}
|
}
|
||||||
|
@ -50,8 +50,8 @@ type CachedFieldInfoBase struct {
|
|||||||
// Purpose: reduce the interface asserting cost in runtime.
|
// Purpose: reduce the interface asserting cost in runtime.
|
||||||
IsCommonInterface bool
|
IsCommonInterface bool
|
||||||
|
|
||||||
// IsCustomConvert marks there custom converting function for this field type.
|
// HasCustomConvert marks there custom converting function for this field type.
|
||||||
IsCustomConvert bool
|
HasCustomConvert bool
|
||||||
|
|
||||||
// StructField is the type info of this field.
|
// StructField is the type info of this field.
|
||||||
StructField reflect.StructField
|
StructField reflect.StructField
|
||||||
|
@ -99,7 +99,7 @@ func (csi *CachedStructInfo) makeCachedFieldInfo(
|
|||||||
StructField: field,
|
StructField: field,
|
||||||
FieldIndexes: fieldIndexes,
|
FieldIndexes: fieldIndexes,
|
||||||
ConvertFunc: csi.genFieldConvertFunc(field.Type.String()),
|
ConvertFunc: csi.genFieldConvertFunc(field.Type.String()),
|
||||||
IsCustomConvert: csi.checkTypeHasCustomConvert(field.Type),
|
HasCustomConvert: csi.checkTypeHasCustomConvert(field.Type),
|
||||||
PriorityTagAndFieldName: csi.genPriorityTagAndFieldName(field, priorityTags),
|
PriorityTagAndFieldName: csi.genPriorityTagAndFieldName(field, priorityTags),
|
||||||
RemoveSymbolsFieldName: utils.RemoveSymbols(field.Name),
|
RemoveSymbolsFieldName: utils.RemoveSymbols(field.Name),
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user