Skip to content

Commit

Permalink
Fix mismatch port with description
Browse files Browse the repository at this point in the history
Signed-off-by: Weerasak Chongnguluam <singpor@gmail.com>
  • Loading branch information
iporsut authored Jul 30, 2023
1 parent dfde545 commit 4e1f758
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service_invocation/go/http/order-processor/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func main() {

// Start the server listening on port 6001
// This is a blocking call
err := http.ListenAndServe(":6006", r)
err := http.ListenAndServe(":6001", r)
if err != http.ErrServerClosed {
log.Println("Error starting HTTP server")
}
Expand Down

0 comments on commit 4e1f758

Please sign in to comment.