We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e76bebb commit 8beb3deCopy full SHA for 8beb3de
config/sites.ts
@@ -126,7 +126,9 @@ export class SiteConfigStore extends Config<Static<typeof Site>> {
126
promises.push(this.protocols.hyper.unsync(id, site.links.hyper, ctx))
127
}
128
129
- await Promise.all(promises)
+ await Promise.all(promises).catch((e) => {
130
+ ctx?.logger.warn(`Error unsyncing site ${e.stack as string}`)
131
+ })
132
await this.db.del(id)
133
134
0 commit comments