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

This commit is contained in:
ShiKhu 2022-04-28 17:02:13 +02:00 committed by Taha Yassine Kraiem
parent 1b93f8a453
commit fbb039f0c7

View file

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