mirror of https://github.com/milvus-io/milvus.git
Fix NoSuchKey error caused by special stats log (#24670)
Signed-off-by: sunby <bingyi.sun@zilliz.com> Co-authored-by: sunby <bingyi.sun@zilliz.com>pull/24691/head
parent
ea62922829
commit
b71c967ed7
|
@ -31,7 +31,7 @@ const (
|
|||
)
|
||||
|
||||
func (s StatsLogType) LogIdx() string {
|
||||
return fmt.Sprintf("0%d", s)
|
||||
return fmt.Sprintf("%d", s)
|
||||
}
|
||||
|
||||
type FileReader interface {
|
||||
|
|
Loading…
Reference in New Issue