Check error in datacoord server test (#8802)

Signed-off-by: sunby <bingyi.sun@zilliz.com>
pull/8629/head
sunby 2021-09-28 22:04:06 +08:00 committed by GitHub
parent f6632acc4c
commit 2ea7c0af25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -316,7 +316,8 @@ func TestGetInsertBinlogPaths(t *testing.T) {
},
},
}
svr.meta.AddSegment(NewSegmentInfo(info))
err := svr.meta.AddSegment(NewSegmentInfo(info))
assert.Nil(t, err)
req := &datapb.GetInsertBinlogPathsRequest{
SegmentID: 0,
}