diff --git a/src/core/Repository.ts b/src/core/Repository.ts index 2fd6893..614f9ca 100644 --- a/src/core/Repository.ts +++ b/src/core/Repository.ts @@ -456,7 +456,7 @@ export default class Repository { .startSpan("Repository.removeCache"); span.setAttribute("repoId", this.repoId); try { - return storage.rm(this.repoId); + await storage.rm(this.repoId); } finally { this.model.isReseted = true; await this.model.save();