[BUG] plugin/ready: fix Reset list of readiness plugins (#8035)

Signed-off-by: 杨军10092085 <yang.jun22@zte.com.cn>
This commit is contained in:
JUN YANG
2026-04-11 18:15:28 +08:00
committed by GitHub
parent 0ed3aae547
commit 57a95e2677
3 changed files with 75 additions and 12 deletions

View File

@@ -9,8 +9,7 @@ import (
// list is a structure that holds the plugins that signals readiness for this server block.
type list struct {
sync.RWMutex
rs []Readiness
names []string
rs map[string]Readiness
// keepReadiness indicates whether the readiness status of plugins should be retained
// after they have been confirmed as ready. When set to false, the plugin readiness
@@ -24,36 +23,38 @@ func (l *list) Reset() {
l.Lock()
defer l.Unlock()
l.rs = nil
l.names = nil
}
// Append adds a new readiness to l.
func (l *list) Append(r Readiness, name string) {
l.Lock()
defer l.Unlock()
l.rs = append(l.rs, r)
l.names = append(l.names, name)
if l.rs == nil {
l.rs = make(map[string]Readiness)
}
l.rs[name] = r
}
// Ready return true when all plugins ready, if the returned value is false the string
// contains a comma separated list of plugins that are not ready.
func (l *list) Ready() (bool, string) {
l.RLock()
defer l.RUnlock()
l.Lock()
defer l.Unlock()
ok := true
s := []string{}
for i, r := range l.rs {
for name, r := range l.rs {
if r == nil {
continue
}
if r.Ready() {
if !l.keepReadiness {
l.rs[i] = nil
l.rs[name] = nil
}
continue
}
ok = false
s = append(s, l.names[i])
s = append(s, name)
}
if ok {
return true, ""

View File

@@ -11,6 +11,7 @@ import (
func init() { plugin.Register("ready", setup) }
func setup(c *caddy.Controller) error {
plugins.Reset()
addr, monType, err := parse(c)
if err != nil {
return plugin.Error("ready", err)
@@ -32,7 +33,6 @@ func setup(c *caddy.Controller) error {
c.OnRestartFailed(func() error { return uniqAddr.ForEach() })
c.OnStartup(func() error {
plugins.Reset()
for _, p := range dnsserver.GetConfig(c).Handlers() {
if r, ok := p.(Readiness); ok {
plugins.Append(r, p.Name())