dev: fix double call to startTracing (#4757)

This commit is contained in:
Ludovic Fernandez 2024-05-27 13:20:41 +02:00 committed by GitHub
parent ed54241b16
commit 6456cbda82
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -171,7 +171,7 @@ func (c *runCommand) persistentPreRunE(cmd *cobra.Command, args []string) error
runtime.GOMAXPROCS(c.cfg.Run.Concurrency)
}
return c.startTracing()
return nil
}
func (c *runCommand) persistentPostRunE(_ *cobra.Command, _ []string) error {