Skip to content

Commit

Permalink
Disable auth cache
Browse files Browse the repository at this point in the history
  • Loading branch information
cody-littley committed Jan 31, 2025
1 parent 0d293cc commit d748138
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion node/flags/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ var (
Usage: "The duration for which a disperser authentication is valid",
Required: false,
EnvVar: common.PrefixEnvVar(EnvVarPrefix, "DISPERSAL_AUTHENTICATION_TIMEOUT"),
Value: time.Minute,
Value: 0, // TODO (cody-littley) remove this feature
}
RelayMaxGRPCMessageSizeFlag = cli.IntFlag{
Name: common.PrefixFlag(FlagPrefix, "relay-max-grpc-message-size"),
Expand Down
2 changes: 1 addition & 1 deletion relay/cmd/flags/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ var (
AuthenticationDisabledFlag = cli.BoolFlag{
Name: common.PrefixFlag(FlagPrefix, "authentication-disabled"),
Usage: "Disable GetChunks() authentication",
Required: false,
Required: true, // TODO(cody-littley) remove this feature
EnvVar: common.PrefixEnvVar(envVarPrefix, "AUTHENTICATION_DISABLED"),
}
GetChunksTimeoutFlag = cli.DurationFlag{
Expand Down

0 comments on commit d748138

Please sign in to comment.