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>
This commit is contained in:
smellthemoon 2023-12-30 00:32:47 +08:00 committed by GitHub
parent c2345daf3a
commit ae640e7c80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)