diff --git a/docs/apidoc/apigw/definition.yaml b/docs/apidoc/apigw/definition.yaml index 77c7d6967d..82783e0a7b 100644 --- a/docs/apidoc/apigw/definition.yaml +++ b/docs/apidoc/apigw/definition.yaml @@ -5,11 +5,11 @@ spec_version: 1 release: # 发布版本号; # 资源配置更新,需更新此版本号才会发布资源版本,此版本号和 sdk 版本号一致,错误设置会影响调用方使用 - version: 3.13.11-alpha1 + version: 3.13.11 # 版本标题 - title: "3.13.11-alpha1" + title: "3.13.11" # 版本描述 - comment: "3.13.11-alpha1" + comment: "3.13.11" # 定义网关基本信息,用于命令 `sync_apigw_config` apigateway: diff --git a/docs/support-file/changelog/release.md b/docs/support-file/changelog/release.md index b8af132f74..2c79acff1b 100644 --- a/docs/support-file/changelog/release.md +++ b/docs/support-file/changelog/release.md @@ -1,4 +1,4 @@ -## [Version: v3.13.11-alpha1] - 2024-10-15 +## [Version: v3.13.11] - 2024-10-18 **新增功能** - 添加CMDB数据同步服务 diff --git a/docs/support-file/helm/Chart.yaml b/docs/support-file/helm/Chart.yaml index dee5fce910..729c80358e 100644 --- a/docs/support-file/helm/Chart.yaml +++ b/docs/support-file/helm/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: 3.13.11-alpha1 +appVersion: 3.13.11 description: BlueKing Configuration Management DataBase (bk-cmdb) is an enterprise level configuration management serivce database. name: bk-cmdb type: application -version: 3.14.11-alpha1 +version: 3.14.11 dependencies: - name: common repository: https://charts.bitnami.com/bitnami diff --git a/src/apimachinery/discovery/discovery.go b/src/apimachinery/discovery/discovery.go index ed3ce795c7..4dfbf4c9ab 100644 --- a/src/apimachinery/discovery/discovery.go +++ b/src/apimachinery/discovery/discovery.go @@ -74,6 +74,12 @@ func NewServiceDiscovery(client *zk.ZkClient) (DiscoveryInterface, error) { if component == types.CC_MODULE_WEBSERVER && curServiceName != types.CC_MODULE_WEBSERVER { continue } + + // other service do not need to discover transfer service + if component == types.CC_MODULE_TRANSFERSERVICE && curServiceName != types.CC_MODULE_TRANSFERSERVICE { + continue + } + path := fmt.Sprintf("%s/%s", types.CC_SERV_BASEPATH, component) svr, err := newServerDiscover(disc, path, component) if err != nil {