dont error if ejectFromCache is called when the response is already not cached

This commit is contained in:
Randall Schmidt
2020-11-27 23:31:39 -05:00
parent 558d63fd40
commit 8e1b57382a
2 changed files with 16 additions and 2 deletions

View File

@ -25,8 +25,14 @@ class Response {
return this.bodyBuffer;
}
ejectFromCache() {
return fs.promises.unlink(this.cacheFilePath);
async ejectFromCache() {
try {
await fs.promises.unlink(this.cacheFilePath);
} catch (err) {
if (err.code !== 'ENOENT') {
throw err;
}
}
}
}