mirror of https://github.com/milvus-io/milvus.git
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>pull/41369/head
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…
Reference in New Issue