From 19405084cfd60b41380bfc21aa65d164df7f02dc Mon Sep 17 00:00:00 2001 From: Tobie Morgan Hitchcock Date: Fri, 30 Sep 2016 15:57:36 +0100 Subject: [PATCH] Disable trace profiling so tests work on CircleCI --- main.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/main.go b/main.go index c05626c2..3a2f7bfd 100644 --- a/main.go +++ b/main.go @@ -31,8 +31,6 @@ func main() { defer profile.Start(profile.MemProfile, profile.ProfilePath("."), profile.NoShutdownHook).Stop() case "block": defer profile.Start(profile.BlockProfile, profile.ProfilePath("."), profile.NoShutdownHook).Stop() - case "trace": - defer profile.Start(profile.TraceProfile, profile.ProfilePath("."), profile.NoShutdownHook).Stop() } cli.Init()