Skip to content

Commit ef3b940

Browse files
authored
Remove unnecessary argument from app.listen()
app.listen() Expected 0 arguments, but got 1.
1 parent 88e16f4 commit ef3b940

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)