Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

添加v3.13.11版本日志 #8227

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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