fix(server,cli): don't float promises (#4433)
* fix: don't allow floating promises * fix: await all promises * fix: download archives * fix cli tests * fix: skip web
This commit is contained in:
committed by
GitHub
parent
7e9fc4aa97
commit
f0bb50b61a
@@ -75,7 +75,7 @@ export class AppModule implements OnModuleInit, OnModuleDestroy {
|
||||
await this.appService.init();
|
||||
}
|
||||
|
||||
onModuleDestroy() {
|
||||
this.appService.destroy();
|
||||
async onModuleDestroy() {
|
||||
await this.appService.destroy();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user