mirror of https://github.com/milvus-io/milvus.git
fix: pass in undefined params (#29591)
fix pass in undefined params issue: #29594 Signed-off-by: lixinguo <xinguo.li@zilliz.com> Co-authored-by: lixinguo <xinguo.li@zilliz.com>pull/29573/head
parent
c2345daf3a
commit
ae640e7c80
|
@ -1218,11 +1218,11 @@ func TestProxy(t *testing.T) {
|
|||
DbName: dbName,
|
||||
CollectionName: collectionName,
|
||||
FieldName: floatVecField,
|
||||
IndexName: indexName,
|
||||
IndexName: floatIndexName,
|
||||
})
|
||||
err = merr.CheckRPCCall(resp, err)
|
||||
assert.NoError(t, err)
|
||||
assert.Equal(t, commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
|
||||
indexName = resp.IndexDescriptions[0].IndexName
|
||||
})
|
||||
|
||||
wg.Add(1)
|
||||
|
|
Loading…
Reference in New Issue