Skip to content

Commit 84283b2

Browse files
Merge pull request #1965 from tomer953/patch-1
Remove unnecessary argument from app.listen()
2 parents 88e16f4 + ef3b940 commit 84283b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/microservices/basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ async function bootstrap() {
3333
transport: Transport.TCP,
3434
},
3535
);
36-
app.listen(() => console.log('Microservice is listening'));
36+
app.listen();
3737
}
3838
bootstrap();
3939
@@switch

0 commit comments

Comments
 (0)