From 7ff9ed33adbbbe1fd11d37068d0ae9f1a333ef4d Mon Sep 17 00:00:00 2001 From: cxytz01 Date: Tue, 28 Dec 2021 19:21:18 +0800 Subject: [PATCH] [skip e2e] Grammar correction (#14416) Signed-off-by: cxytz01 --- internal/rootcoord/meta_snapshot.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/rootcoord/meta_snapshot.go b/internal/rootcoord/meta_snapshot.go index b2e9096463..4df01fb647 100644 --- a/internal/rootcoord/meta_snapshot.go +++ b/internal/rootcoord/meta_snapshot.go @@ -120,7 +120,7 @@ func (ms *metaSnapshot) loadTs() error { strTs := string(resp.Kvs[0].Value) if strTs == "0" { //#issue 7150, index building inserted "0", skipping - //this is a special fix for backward compatibility, previous version will put 0 ts into snapshot building index + //this is a special fix for backward compatibility, the previous version will put 0 ts into the snapshot building index continue } curTs, err := strconv.ParseUint(strTs, 10, 64)