Skip to content

v2.4.1

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 04 Sep 12:33
bb1491d

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(...)