Skip to content

Commit e1c0b3a

Browse files
authored
fix(example-server): make port as same as print (#677)
1 parent 7029774 commit e1c0b3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/server/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ func newHandler() http.Handler {
1717
func main() {
1818
log.Println("grafana api: /api/grafana/json")
1919
log.Println("listen 0.0.0.0:8081")
20-
http.ListenAndServe(":8181", newHandler())
20+
http.ListenAndServe(":8081", newHandler())
2121
}
2222

2323
var defaultMetrics = `

0 commit comments

Comments
 (0)