From f208bb0a07049f7e5f0881bd5dea69f966ee8c0c Mon Sep 17 00:00:00 2001 From: Dave <44786846+centercirclesolutions@users.noreply.github.com> Date: Mon, 17 Feb 2020 06:08:37 -0800 Subject: [PATCH] Fix: Update pprof port (#244) Since both Hornet and Goshimmer might be running on the same machine, update the port so that we can get debug information for both. --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 2f947172..1c86830e 100644 --- a/main.go +++ b/main.go @@ -31,7 +31,7 @@ import ( func main() { cli.LoadConfig() - go http.ListenAndServe("localhost:6060", nil) // pprof Server for Debbuging Mutexes + go http.ListenAndServe("localhost:6061", nil) // pprof Server for Debbuging Mutexes node.Run( node.Plugins( -- GitLab