Skip to content

Commit dd6403d

Browse files
docs: 添加v3.13.11版本日志 (#8227)
--story=119241405
1 parent 5de2efb commit dd6403d

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

docs/apidoc/apigw/definition.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ spec_version: 1
55
release:
66
# 发布版本号;
77
# 资源配置更新,需更新此版本号才会发布资源版本,此版本号和 sdk 版本号一致,错误设置会影响调用方使用
8-
version: 3.13.11-alpha1
8+
version: 3.13.11
99
# 版本标题
10-
title: "3.13.11-alpha1"
10+
title: "3.13.11"
1111
# 版本描述
12-
comment: "3.13.11-alpha1"
12+
comment: "3.13.11"
1313

1414
# 定义网关基本信息,用于命令 `sync_apigw_config`
1515
apigateway:

docs/support-file/changelog/release.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## [Version: v3.13.11-alpha1] - 2024-10-15
1+
## [Version: v3.13.11] - 2024-10-18
22
**新增功能**
33
- 添加CMDB数据同步服务
44

docs/support-file/helm/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
apiVersion: v2
2-
appVersion: 3.13.11-alpha1
2+
appVersion: 3.13.11
33
description: BlueKing Configuration Management DataBase (bk-cmdb) is an enterprise level configuration management serivce database.
44
name: bk-cmdb
55
type: application
6-
version: 3.14.11-alpha1
6+
version: 3.14.11
77
dependencies:
88
- name: common
99
repository: https://charts.bitnami.com/bitnami

src/apimachinery/discovery/discovery.go

+6
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,12 @@ func NewServiceDiscovery(client *zk.ZkClient) (DiscoveryInterface, error) {
7474
if component == types.CC_MODULE_WEBSERVER && curServiceName != types.CC_MODULE_WEBSERVER {
7575
continue
7676
}
77+
78+
// other service do not need to discover transfer service
79+
if component == types.CC_MODULE_TRANSFERSERVICE && curServiceName != types.CC_MODULE_TRANSFERSERVICE {
80+
continue
81+
}
82+
7783
path := fmt.Sprintf("%s/%s", types.CC_SERV_BASEPATH, component)
7884
svr, err := newServerDiscover(disc, path, component)
7985
if err != nil {

0 commit comments

Comments
 (0)