This commit is contained in:
Sasha Koshka 2023-03-08 23:45:48 -05:00
parent fc0de81215
commit 401cba8360
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ import _ "net/http/pprof"
func Prof () {
go func () {
err := http.ListenAndServe("localhost:9090", nil)
err := http.ListenAndServe("localhost:8888", nil)
if err != nil { panic(err.Error()) }
} ()
}