mirror of
https://github.com/go-kratos/kratos.git
synced 2025-03-17 21:07:54 +02:00
fix lint error (#2266)
This commit is contained in:
parent
0aa9719e3a
commit
e4d73db523
@ -99,8 +99,9 @@ type Logger struct {
|
||||
|
||||
// NewLogger new a std logger with options.
|
||||
// target:
|
||||
// tcp://127.0.0.1:24224
|
||||
// unix://var/run/fluent/fluent.sock
|
||||
//
|
||||
// tcp://127.0.0.1:24224
|
||||
// unix://var/run/fluent/fluent.sock
|
||||
func NewLogger(addr string, opts ...Option) (*Logger, error) {
|
||||
option := options{}
|
||||
for _, o := range opts {
|
||||
|
@ -62,7 +62,7 @@ func (d *Discovery) Register(ctx context.Context, service *registry.ServiceInsta
|
||||
return
|
||||
}
|
||||
|
||||
// register an instance with Discovery
|
||||
// register an instance with Discovery
|
||||
func (d *Discovery) register(ctx context.Context, ins *discoveryInstance) (err error) {
|
||||
d.mutex.RLock()
|
||||
c := d.config
|
||||
|
@ -32,37 +32,37 @@ import (
|
||||
// kratos-service-protocols: define the protocols of the service
|
||||
//
|
||||
// Example Deployment:
|
||||
//
|
||||
// apiVersion: apps/v1
|
||||
// kind: Deployment
|
||||
// metadata:
|
||||
// name: nginx
|
||||
// labels:
|
||||
// app: nginx
|
||||
// spec:
|
||||
// replicas: 5
|
||||
// selector:
|
||||
// matchLabels:
|
||||
// app: nginx
|
||||
// template:
|
||||
// metadata:
|
||||
// labels:
|
||||
// app: nginx
|
||||
// kratos-service-id: "56991810-c77f-4a95-8190-393efa9c1a61"
|
||||
// kratos-service-app: "nginx"
|
||||
// kratos-service-version: "v3.5.0"
|
||||
// annotations:
|
||||
// kratos-service-protocols: |
|
||||
// {"80": "http"}
|
||||
// kratos-service-metadata: |
|
||||
// {"region": "sh", "zone": "sh001", "cluster": "pd"}
|
||||
// spec:
|
||||
// containers:
|
||||
// - name: nginx
|
||||
// image: nginx:1.7.9
|
||||
// ports:
|
||||
// - containerPort: 80
|
||||
//
|
||||
/*
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: nginx
|
||||
labels:
|
||||
app: nginx
|
||||
spec:
|
||||
replicas: 5
|
||||
selector:
|
||||
matchLabels:
|
||||
app: nginx
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: nginx
|
||||
kratos-service-id: "56991810-c77f-4a95-8190-393efa9c1a61"
|
||||
kratos-service-app: "nginx"
|
||||
kratos-service-version: "v3.5.0"
|
||||
annotations:
|
||||
kratos-service-protocols: |
|
||||
{"80": "http"}
|
||||
kratos-service-metadata: |
|
||||
{"region": "sh", "zone": "sh001", "cluster": "pd"}
|
||||
spec:
|
||||
containers:
|
||||
- name: nginx
|
||||
image: nginx:1.7.9
|
||||
ports:
|
||||
- containerPort: 80
|
||||
*/
|
||||
const (
|
||||
// LabelsKeyServiceID is used to define the ID of the service
|
||||
LabelsKeyServiceID = "kratos-service-id"
|
||||
|
@ -14,7 +14,8 @@ type directBuilder struct{}
|
||||
|
||||
// NewBuilder creates a directBuilder which is used to factory direct resolvers.
|
||||
// example:
|
||||
// direct://<authority>/127.0.0.1:9000,127.0.0.2:9000
|
||||
//
|
||||
// direct://<authority>/127.0.0.1:9000,127.0.0.2:9000
|
||||
func NewBuilder() resolver.Builder {
|
||||
return &directBuilder{}
|
||||
}
|
||||
|
@ -176,7 +176,8 @@ func (s *Server) Use(selector string, m ...middleware.Middleware) {
|
||||
|
||||
// Endpoint return a real address to registry endpoint.
|
||||
// examples:
|
||||
// grpc://127.0.0.1:9000?isSecure=false
|
||||
//
|
||||
// grpc://127.0.0.1:9000?isSecure=false
|
||||
func (s *Server) Endpoint() (*url.URL, error) {
|
||||
if err := s.listenAndEndpoint(); err != nil {
|
||||
return nil, s.err
|
||||
|
@ -256,8 +256,9 @@ func (s *Server) filter() mux.MiddlewareFunc {
|
||||
|
||||
// Endpoint return a real address to registry endpoint.
|
||||
// examples:
|
||||
// https://127.0.0.1:8000
|
||||
// Legacy: http://127.0.0.1:8000?isSecure=false
|
||||
//
|
||||
// https://127.0.0.1:8000
|
||||
// Legacy: http://127.0.0.1:8000?isSecure=false
|
||||
func (s *Server) Endpoint() (*url.URL, error) {
|
||||
if err := s.listenAndEndpoint(); err != nil {
|
||||
return nil, err
|
||||
|
Loading…
x
Reference in New Issue
Block a user