chore: update provider proxies api

This commit is contained in:
gVisor bot 2023-09-24 00:19:10 +08:00
parent e340aee94e
commit 89d8589654

View file

@ -217,6 +217,10 @@ func (p *Proxy) URLTest(ctx context.Context, url string, expectedStatus utils.In
if alive {
record.Delay = t
}
p.history.Put(record)
if p.history.Len() > defaultHistoriesNum {
p.history.Pop()
}
state, ok := p.extra.Load(url)
if !ok {