Skip to content

Commit

Permalink
docs: 添加v3.13.11版本日志 (#8227)
Browse files Browse the repository at this point in the history
--story=119241405
  • Loading branch information
wcy00000000000000 authored Oct 18, 2024
1 parent 5de2efb commit dd6403d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/apidoc/apigw/definition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion docs/support-file/changelog/release.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## [Version: v3.13.11-alpha1] - 2024-10-15
## [Version: v3.13.11] - 2024-10-18
**新增功能**
- 添加CMDB数据同步服务

Expand Down
4 changes: 2 additions & 2 deletions docs/support-file/helm/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 6 additions & 0 deletions src/apimachinery/discovery/discovery.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit dd6403d

Please sign in to comment.