Merge pull request #24692 from taosdata/fix/xsren/TD-27786/closeHandle

fix: don't wait when tsort close
This commit is contained in:
dapan1121 2024-01-31 17:23:40 +08:00 committed by GitHub
commit 8cae539fce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 1 deletions

View File

@ -1334,7 +1334,6 @@ static bool tsortOpenForBufMergeSort(SSortHandle* pHandle) {
int32_t tsortClose(SSortHandle* pHandle) {
atomic_val_compare_exchange_8(&pHandle->closed, 0, 1);
taosMsleep(10);
return TSDB_CODE_SUCCESS;
}