This commit is contained in:
Wu Jian Ping 2022-07-22 15:45:45 +08:00
parent 1a2e327e22
commit 8c92ed33f4
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ class Searcher {
const diff = process.hrtime(startTime)
const took = (diff[0] * 1e9 + diff[1]) / 1e6
const took = (diff[0] * 1e9 + diff[1]) / 1e3
return { region: result, ioCount: ioStatus.ioCount, took }
}
}