fs.close不写回调函数时,在14.x及以上版本中报错
This commit is contained in:
parent
76b494db73
commit
b071019afd
|
|
@ -122,7 +122,7 @@ class Searcher {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (fd) {
|
if (fd) {
|
||||||
fs.close(fd)
|
fs.close(fd,function(){})
|
||||||
}
|
}
|
||||||
|
|
||||||
const diff = process.hrtime(startTime)
|
const diff = process.hrtime(startTime)
|
||||||
|
|
@ -178,7 +178,7 @@ const loadVectorIndexFromFile = dbPath => {
|
||||||
const fd = fs.openSync(dbPath, 'r')
|
const fd = fs.openSync(dbPath, 'r')
|
||||||
const buffer = Buffer.alloc(VectorIndexLength)
|
const buffer = Buffer.alloc(VectorIndexLength)
|
||||||
fs.readSync(fd, buffer, 0, VectorIndexLength, 256)
|
fs.readSync(fd, buffer, 0, VectorIndexLength, 256)
|
||||||
fs.close(fd)
|
fs.close(fd,function(){})
|
||||||
return buffer
|
return buffer
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -187,7 +187,7 @@ const loadContentFromFile = dbPath => {
|
||||||
const buffer = Buffer.alloc(stats.size)
|
const buffer = Buffer.alloc(stats.size)
|
||||||
const fd = fs.openSync(dbPath, 'r')
|
const fd = fs.openSync(dbPath, 'r')
|
||||||
fs.readSync(fd, buffer, 0, stats.size, 0)
|
fs.readSync(fd, buffer, 0, stats.size, 0)
|
||||||
fs.close(fd)
|
fs.close(fd,function(){})
|
||||||
return buffer
|
return buffer
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue