Skip to content

Commit

Permalink
Update comments with correct port (#900)
Browse files Browse the repository at this point in the history
Signed-off-by: Hugh Xia <xsmlinzi@outlook.com>
  • Loading branch information
hughxia authored Sep 8, 2023
1 parent 6b258d0 commit a9a48ec
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 @@ -27,7 +27,7 @@ func main() {
r := mux.NewRouter()
r.HandleFunc("/orders", getOrder).Methods("POST")

// Start the server listening on port 6001
// Start the server listening on port 6006
// This is a blocking call
err := http.ListenAndServe(":6006", r)
if !errors.Is(err, http.ErrServerClosed) {
Expand Down

0 comments on commit a9a48ec

Please sign in to comment.