Skip to content

Commit 1596855

Browse files
arlCopilot
authored andcommitted
_example: fix duplicate port in test (#141)
1 parent 240b6eb commit 1596855

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

_example/userplots/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ func main() {
2525
log.Fatal(err)
2626
}
2727

28-
fmt.Println("Point your browser to http://localhost:8093/debug/statsviz/")
29-
log.Fatal(http.ListenAndServe(":8093", mux))
28+
fmt.Println("Point your browser to http://localhost:8094/debug/statsviz/")
29+
log.Fatal(http.ListenAndServe(":8094", mux))
3030
}
3131

3232
func scatterPlot() statsviz.TimeSeriesPlot {

testdata/userplots.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ go mod tidy
77

88
go build main.go
99
! exec ./main &
10-
checkui http://localhost:8093/debug/statsviz/
10+
checkui http://localhost:8094/debug/statsviz/

0 commit comments

Comments
 (0)