Skip to content

Commit 92d1952

Browse files
committed
fix(core): Don't report "Started composite service" when shutting down
1 parent 1ee0abd commit 92d1952

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/core/CompositeService.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,9 @@ export class CompositeService {
8585
await never()
8686
}
8787
await service.start()
88+
if (this.stopping) {
89+
await never()
90+
}
8891
}
8992

9093
private handleError(message: string) {

0 commit comments

Comments
 (0)