From ea5f4192d0b84bc5cab5194cc781f223a1709264 Mon Sep 17 00:00:00 2001 From: Ken Hibino Date: Wed, 13 Oct 2021 05:45:30 -0700 Subject: [PATCH] Fix readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 37c860c..38185d5 100644 --- a/README.md +++ b/README.md @@ -153,7 +153,7 @@ func main() { http.Handle(h.RootPath(), h) // Go to http://localhost:8080/monitoring to see asynqmon homepage. - log.Fatal(http.ListenAndServe(":8000", nil)) + log.Fatal(http.ListenAndServe(":8080", nil)) } ```