[skip e2e]Fix missed db parameter (#25790)

Signed-off-by: jaime <yun.zhang@zilliz.com>
pull/25950/head
jaime 2023-07-26 19:46:51 +08:00 committed by GitHub
parent 5fbe6e99fd
commit 51b7354349
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -499,7 +499,7 @@ func (m *importManager) importJob(ctx context.Context, req *milvuspb.ImportReque
// since here we always return task list to client no matter something missed.
// We make the method setCollectionPartitionName() returns error
// because we need to make sure coverage all the code branch in unittest case.
_ = m.setCollectionPartitionName("", cID, pID, newTask)
_ = m.setCollectionPartitionName(req.GetDbName(), cID, pID, newTask)
resp.Tasks = append(resp.Tasks, newTask.GetId())
taskList[i] = newTask.GetId()
log.Info("new task created as pending task",