fix(backend):pprof launch addr: use port only

This commit is contained in:
ShiKhu 2022-04-28 17:02:13 +02:00
parent 43669c082c
commit d64cd12eb6

View file

@ -8,6 +8,6 @@ import (
func StartProfilingServer() {
go func() {
log.Println(http.ListenAndServe("localhost:6060", nil))
log.Println(http.ListenAndServe(":6060", nil))
}()
}