fix: contrib config nacos lint err (#1522)

* fix: contrib metrics datadog lint err

* fix: contrib config nacos lint err
pull/1528/head
倒霉狐狸 3 years ago committed by GitHub
parent 0aace47d08
commit 74e630c21a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      contrib/config/nacos/config.go
  2. 1
      hack/.lintcheck_failures

@ -12,9 +12,9 @@ import (
type Option func(*options) type Option func(*options)
type options struct { type options struct {
endpoint string endpoint string // nolint:structcheck,unused
namespaceID string namespaceID string // nolint:structcheck,unused
group string group string
dataID string dataID string
@ -80,12 +80,12 @@ func NewConfigSource(client config_client.IConfigClient, opts ...Option) config.
} }
return &Config{client: client, opts: _options} return &Config{client: client, opts: _options}
} }
func (c *Config) Load() ([]*config.KeyValue, error) { func (c *Config) Load() ([]*config.KeyValue, error) {
content, err := c.client.GetConfig(vo.ConfigParam{ content, err := c.client.GetConfig(vo.ConfigParam{
DataId: c.opts.dataID, DataId: c.opts.dataID,
Group: c.opts.group, Group: c.opts.group,
}) })
if err != nil { if err != nil {
return nil, err return nil, err
} }
@ -107,7 +107,6 @@ func (c *Config) Watch() (config.Watcher, error) {
if dataId == watcher.dataID && group == watcher.group { if dataId == watcher.dataID && group == watcher.group {
watcher.content <- data watcher.content <- data
} }
return
}, },
}) })
if err != nil { if err != nil {

@ -1,4 +1,3 @@
./contrib/config/nacos
./contrib/config/apollo ./contrib/config/apollo
./contrib/config/kubernetes ./contrib/config/kubernetes
./contrib/registry/nacos ./contrib/registry/nacos

Loading…
Cancel
Save