fix: sort quit issue

This commit is contained in:
dapan1121 2023-06-25 13:45:17 +08:00
parent c4d630aaa1
commit 5135d7534e
1 changed files with 1 additions and 1 deletions

View File

@ -810,7 +810,7 @@ int32_t tsortOpen(SSortHandle* pHandle) {
int32_t tsortClose(SSortHandle* pHandle) {
atomic_val_compare_exchange_8(&pHandle->closed, 0, 1);
taosSsleep(1);
taosMsleep(10);
return TSDB_CODE_SUCCESS;
}