1
0
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:
jesse.tang
2022-09-27 23:14:29 +08:00
committed by GitHub
parent faa3adc300
commit 0ecc2b422f
2 changed files with 8 additions and 9 deletions

View File

@@ -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]

View File

@@ -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()