Fix hanging IORedis connections; add extollo.wontstop debugging helper

This commit is contained in:
2022-03-29 02:30:48 -05:00
parent 8f08b94f74
commit cdecb7e628
5 changed files with 43 additions and 11 deletions

View File

@@ -121,7 +121,8 @@ export class RedisBus implements EventBus {
}
down(): Awaitable<void> {
this.subscriberConnection?.disconnect()
this.publisherConnection?.disconnect()
// The Redis service will clean up the connections when the framework exits,
// so we don't need to do anything here.
return undefined
}
}