mirror of https://github.com/milvus-io/milvus.git
remove the flush step in drop collection request processing (#3840)
Signed-off-by: godchen0212 <qingxiang.chen@zilliz.com> Signed-off-by: shengjun.li <shengjun.li@zilliz.com>pull/3855/head
parent
a9242b72fe
commit
0e7bd80443
|
@ -43,9 +43,6 @@ DropCollectionReq::OnExecute() {
|
|||
|
||||
STATUS_CHECK(DBWrapper::DB()->DropCollection(collection_name_));
|
||||
|
||||
/* flush to trigger CleanUpFilesWithTTL */
|
||||
STATUS_CHECK(DBWrapper::DB()->Flush());
|
||||
|
||||
rc.ElapseFromBegin("done");
|
||||
} catch (std::exception& ex) {
|
||||
return Status(SERVER_UNEXPECTED_ERROR, ex.what());
|
||||
|
|
Loading…
Reference in New Issue