AOP: Make config reloadable (enterprise) (#26907)

CE stubs to support reloadable AOP config.
This commit is contained in:
Mike Palmiotto 2024-05-09 17:14:39 -04:00 committed by GitHub
parent c0ea7b1a35
commit 3150c321cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 0 deletions

View File

@ -1669,6 +1669,8 @@ func (c *ServerCommand) Run(args []string) int {
core.ReloadRequestLimiter()
core.ReloadOverloadController()
// reloading HCP link
hcpLink, err = c.reloadHCPLink(hcpLink, config, core, hcpLogger)
if err != nil {

View File

@ -108,3 +108,5 @@ func (c *Core) SetMultisealEnabled(_ bool) {}
func (c *Core) ReloadReplicationCanaryWriteInterval() {}
func (c *Core) GetReplicationLagMillisIgnoreErrs() int64 { return 0 }
func (c *Core) ReloadOverloadController() {}