From 6c135e5ea9cf6035bed36fc4034d147eae68851a Mon Sep 17 00:00:00 2001 From: Reid Chan Date: Tue, 13 Aug 2024 17:40:20 +0800 Subject: [PATCH] fix: key of DataCoordTicklePath is wrong (issue: #35259) (#35263) issue: [35259](https://github.com/milvus-io/milvus/issues/35259) Signed-off-by: Reid Chan --- pkg/util/paramtable/component_param.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/pkg/util/paramtable/component_param.go b/pkg/util/paramtable/component_param.go index 95dcde7426ccd..8fdb59811c6c2 100644 --- a/pkg/util/paramtable/component_param.go +++ b/pkg/util/paramtable/component_param.go @@ -208,7 +208,6 @@ type commonConfig struct { DataCoordSegmentInfo ParamItem `refreshable:"true"` DataCoordSubName ParamItem `refreshable:"false"` DataCoordWatchSubPath ParamItem `refreshable:"false"` - DataCoordTicklePath ParamItem `refreshable:"false"` DataNodeSubName ParamItem `refreshable:"false"` DefaultPartitionName ParamItem `refreshable:"false"` @@ -399,14 +398,6 @@ func (p *commonConfig) init(base *BaseTable) { } p.DataCoordWatchSubPath.Init(base.mgr) - p.DataCoordTicklePath = ParamItem{ - Key: "msgChannel.subNamePrefix.dataCoordWatchSubPath", - Version: "2.2.3", - DefaultValue: "tickle", - PanicIfEmpty: true, - } - p.DataCoordTicklePath.Init(base.mgr) - p.DataNodeSubName = ParamItem{ Key: "msgChannel.subNamePrefix.dataNodeSubNamePrefix", DefaultValue: "dataNode",