This commit is contained in:
Ferran Borreguero 2021-10-26 09:38:43 +02:00
parent 58702220ac
commit d10f5508b3
2 changed files with 1 additions and 9 deletions

View file

@ -44,7 +44,7 @@ func (d *DebugCommand) Flags() *flagset.Flagset {
Name: "seconds",
Usage: "seconds to trace",
Value: &d.seconds,
Default: 5,
Default: 2,
})
flags.StringFlag(&flagset.StringFlag{
Name: "output",

View file

@ -446,13 +446,5 @@ func (c *Command) Flags() *flagset.Flagset {
Usage: "Address and port to bind the GRPC server",
Value: &c.cliConfig.GRPC.Addr,
})
// grpc
f.StringFlag(&flagset.StringFlag{
Name: "grpc.addr",
Usage: "Address and port to bind the GRPC server",
Value: &c.cliConfig.GRPC.Addr,
})
return f
}