Change event to close

This commit is contained in:
Max Isom 2021-11-24 12:03:25 -06:00
parent 71b62cb3aa
commit 49664be9e1
No known key found for this signature in database
GPG key ID: 25C9B1A7F6798880

View file

@ -44,7 +44,7 @@ export default class FileCacheProvider {
/** /**
* Returns a write stream for the given hash key. * Returns a write stream for the given hash key.
* The stream handles saving a new file and will * The stream handles saving a new file and will
* update the database after the stream is finished. * update the database after the stream is closed.
* @param hash lookup key * @param hash lookup key
*/ */
createWriteStream(hash: string) { createWriteStream(hash: string) {
@ -53,7 +53,7 @@ export default class FileCacheProvider {
const stream = createWriteStream(tmpPath); const stream = createWriteStream(tmpPath);
stream.on('finish', async () => { stream.on('close', async () => {
// Only move if size is non-zero (may have errored out) // Only move if size is non-zero (may have errored out)
const stats = await fs.stat(tmpPath); const stats = await fs.stat(tmpPath);