mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 03:51:29 +00:00
afbe02697d
* Add a service for the monitor * Do not block service start * gaz * move channel subscription outide go routine * add service start test * fix panic on node tests * Radek's first pass * Radek's take 2 * uncap error messages * revert reversal * Terence take 1 * gaz * Missing locks found by Terence * Track via bool not empty interface * Add tests for every function * fix allocation of slice * Minor cleanups Co-authored-by: terence tsao <terence@prysmaticlabs.com>
45 lines
1.1 KiB
Go
45 lines
1.1 KiB
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
"github.com/urfave/cli/v2/altsrc"
|
|
)
|
|
|
|
// WrapFlags so that they can be loaded from alternative sources.
|
|
func WrapFlags(flags []cli.Flag) []cli.Flag {
|
|
wrapped := make([]cli.Flag, 0, len(flags))
|
|
for _, f := range flags {
|
|
switch t := f.(type) {
|
|
case *cli.BoolFlag:
|
|
f = altsrc.NewBoolFlag(t)
|
|
case *cli.DurationFlag:
|
|
f = altsrc.NewDurationFlag(t)
|
|
case *cli.GenericFlag:
|
|
f = altsrc.NewGenericFlag(t)
|
|
case *cli.Float64Flag:
|
|
f = altsrc.NewFloat64Flag(t)
|
|
case *cli.IntFlag:
|
|
f = altsrc.NewIntFlag(t)
|
|
case *cli.StringFlag:
|
|
f = altsrc.NewStringFlag(t)
|
|
case *cli.StringSliceFlag:
|
|
f = altsrc.NewStringSliceFlag(t)
|
|
case *cli.Uint64Flag:
|
|
f = altsrc.NewUint64Flag(t)
|
|
case *cli.UintFlag:
|
|
f = altsrc.NewUintFlag(t)
|
|
case *cli.Int64Flag:
|
|
// Int64Flag does not work. See https://github.com/prysmaticlabs/prysm/issues/6478
|
|
panic(fmt.Sprintf("unsupported flag type type %T", f))
|
|
case *cli.IntSliceFlag:
|
|
f = altsrc.NewIntSliceFlag(t)
|
|
default:
|
|
panic(fmt.Sprintf("cannot convert type %T", f))
|
|
}
|
|
wrapped = append(wrapped, f)
|
|
}
|
|
return wrapped
|
|
}
|