diff --git a/README.md b/README.md index 57398ae..23f443d 100644 --- a/README.md +++ b/README.md @@ -326,11 +326,12 @@ async function bootstrap(): Promise { strategy: app.get(KafkaRetryConsumer), }); + // Put `app.listen(...)` before `app.startAllMicroservice()` + await app.listen(...) + await app.startAllMicroservices(); // ... - - await app.listen(...) } // ...