mirror of
https://github.com/go-kratos/kratos.git
synced 2025-11-06 08:59:18 +02:00
style: modify declaring empty slices (#2378)
* fix: modify declaring empty slices
declare an empty slice to var s []int replace s :=[]int{}, https://github.com/golang/go/wiki/CodeReviewComments#declaring-empty-slices
* fix lint
This commit is contained in:
@@ -92,12 +92,9 @@ func (r *Registry) Watch(ctx context.Context, serviceName string) (registry.Watc
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (r *Registry) Endpoints(service *registry.ServiceInstance) []Endpoint {
|
func (r *Registry) Endpoints(service *registry.ServiceInstance) []Endpoint {
|
||||||
var (
|
res := make([]Endpoint, 0, len(service.Endpoints))
|
||||||
res = []Endpoint{}
|
|
||||||
start int
|
|
||||||
)
|
|
||||||
for _, ep := range service.Endpoints {
|
for _, ep := range service.Endpoints {
|
||||||
start = strings.Index(ep, "//")
|
start := strings.Index(ep, "//")
|
||||||
end := strings.LastIndex(ep, ":")
|
end := strings.LastIndex(ep, ":")
|
||||||
appID := strings.ToUpper(service.Name)
|
appID := strings.ToUpper(service.Name)
|
||||||
ip := ep[start+2 : end]
|
ip := ep[start+2 : end]
|
||||||
|
|||||||
@@ -57,10 +57,12 @@ func setClientSpan(ctx context.Context, span trace.Span, m interface{}) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func setServerSpan(ctx context.Context, span trace.Span, m interface{}) {
|
func setServerSpan(ctx context.Context, span trace.Span, m interface{}) {
|
||||||
attrs := []attribute.KeyValue{}
|
var (
|
||||||
var remote string
|
attrs []attribute.KeyValue
|
||||||
var operation string
|
remote string
|
||||||
var rpcKind string
|
operation string
|
||||||
|
rpcKind string
|
||||||
|
)
|
||||||
tr, ok := transport.FromServerContext(ctx)
|
tr, ok := transport.FromServerContext(ctx)
|
||||||
if ok {
|
if ok {
|
||||||
operation = tr.Operation()
|
operation = tr.Operation()
|
||||||
|
|||||||
Reference in New Issue
Block a user