aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/services/file-cache.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/services/file-cache.ts b/src/services/file-cache.ts
index 6d9c23f..fa4f1f7 100644
--- a/src/services/file-cache.ts
+++ b/src/services/file-cache.ts
@@ -44,7 +44,7 @@ export default class FileCacheProvider {
/**
* Returns a write stream for the given hash key.
* 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
*/
createWriteStream(hash: string) {
@@ -53,7 +53,7 @@ export default class FileCacheProvider {
const stream = createWriteStream(tmpPath);
- stream.on('finish', async () => {
+ stream.on('close', async () => {
// Only move if size is non-zero (may have errored out)
const stats = await fs.stat(tmpPath);