moving web flag to feature (#15382)

This commit is contained in:
james-prysm
2025-06-05 14:18:54 -05:00
committed by GitHub
parent 8c324cc491
commit e569df5ebc
9 changed files with 27 additions and 20 deletions

View File

@@ -51,6 +51,7 @@ type Flags struct {
EnableBeaconRESTApi bool // EnableBeaconRESTApi enables experimental usage of the beacon REST API by the validator when querying a beacon node
EnableExperimentalAttestationPool bool // EnableExperimentalAttestationPool enables an experimental attestation pool design.
EnableDutiesV2 bool // EnableDutiesV2 sets validator client to use the get Duties V2 endpoint
EnableWeb bool // EnableWeb enables the webui on the validator client
// Logging related toggles.
DisableGRPCConnectionLogs bool // Disables logging when a new grpc client has connected.
EnableFullSSZDataLogging bool // Enables logging for full ssz data on rejected gossip messages
@@ -339,6 +340,10 @@ func ConfigureValidator(ctx *cli.Context) error {
logEnabled(EnableDutiesV2)
cfg.EnableDutiesV2 = true
}
if ctx.Bool(EnableWebFlag.Name) {
logEnabled(EnableWebFlag)
cfg.EnableWeb = true
}
cfg.KeystoreImportDebounceInterval = ctx.Duration(dynamicKeyReloadDebounceInterval.Name)
Init(cfg)
return nil

View File

@@ -194,6 +194,13 @@ var (
Name: "enable-duties-v2",
Usage: "Forces use of get duties v2 endpoint.",
}
// EnableWebFlag enables controlling the validator client via the Prysm web ui. This is a work in progress.
EnableWebFlag = &cli.BoolFlag{
Name: "web",
Usage: "(Work in progress): Enables the web portal for the validator client.",
Value: false,
}
)
// devModeFlags holds list of flags that are set when development mode is on.
@@ -215,6 +222,7 @@ var ValidatorFlags = append(deprecatedFlags, []cli.Flag{
enableDoppelGangerProtection,
EnableBeaconRESTApi,
EnableDutiesV2,
EnableWebFlag,
}...)
// E2EValidatorFlags contains a list of the validator feature flags to be tested in E2E.