This commit is contained in:
Wu Jian Ping 2022-07-22 15:45:45 +08:00
parent eb75601289
commit 1ec6495e16
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 }
}
}