MM-10987 Turn on ExperimentalLimitClientConfig by default and remove setting (#9696)

This commit is contained in:
Harrison Healey
2018-10-24 06:52:53 -04:00
committed by George Goldberg
parent 7393d23261
commit 159c2a44dc
6 changed files with 4 additions and 54 deletions

View File

@@ -274,7 +274,6 @@ type ServiceSettings struct {
ImageProxyOptions *string
EnableAPITeamDeletion *bool
ExperimentalEnableHardenedMode *bool
ExperimentalLimitClientConfig *bool
EnableEmailInvitations *bool
}
@@ -566,10 +565,6 @@ func (s *ServiceSettings) SetDefaults() {
if s.ExperimentalEnableHardenedMode == nil {
s.ExperimentalEnableHardenedMode = NewBool(false)
}
if s.ExperimentalLimitClientConfig == nil {
s.ExperimentalLimitClientConfig = NewBool(false)
}
}
type ClusterSettings struct {