mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-08 01:58:34 +08:00
fix: correct a minor typo in log message of kafka client (#41216)
fixes a minor typo that notify users that some special kafka configs are overwritten in Milvus. Signed-off-by: lambert <lambert@daangn.com>
This commit is contained in:
parent
5fd8a196f6
commit
fbd595eae1
@ -256,7 +256,7 @@ func (kc *kafkaClient) StringToMsgID(id string) (common.MessageID, error) {
|
||||
func (kc *kafkaClient) specialExtraConfig(current *kafka.ConfigMap, special kafka.ConfigMap) {
|
||||
for k, v := range special {
|
||||
if existingConf, _ := current.Get(k, nil); existingConf != nil {
|
||||
log.Warn(fmt.Sprintf("The existing config : %v=%v will be covered by the speciled kafka config : %v.", k, v, existingConf))
|
||||
log.Warn(fmt.Sprintf("The existing config : %v=%v will be covered by the special kafka config : %v.", k, v, existingConf))
|
||||
}
|
||||
|
||||
current.SetKey(k, v)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user