summaryrefslogtreecommitdiff
path: root/cmd/netgoal/commands.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/netgoal/commands.go')
-rw-r--r--cmd/netgoal/commands.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/netgoal/commands.go b/cmd/netgoal/commands.go
index 5fc2dcdbe..5ae90dedf 100644
--- a/cmd/netgoal/commands.go
+++ b/cmd/netgoal/commands.go
@@ -20,6 +20,8 @@ import (
"fmt"
"os"
+ "github.com/algorand/go-deadlock"
+
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
)
@@ -32,6 +34,8 @@ func init() {
log.Out = os.Stdout
log.SetLevel(logrus.DebugLevel)
+ // disable the deadlock detection for this tool.
+ deadlock.Opts.Disable = true
}
var rootCmd = &cobra.Command{