2.4.1 (2024-09-04)
Bug Fixes
- use onApplicationShutdown to disconnect kafka producers (bb1491d)
- and throw an error when started listening before app is boostrapped, check your
main.ts
(bb1491d):
Correct code:
await app.listen(...)
await app.startAllMicroservices();
Wrong code:
await app.startAllMicroservices();
await app.listen(...)