Fix monitor

This commit is contained in:
世界 2024-11-12 10:43:04 +08:00
parent d105263fed
commit 6a7c4036d3
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
4 changed files with 13 additions and 9 deletions

View file

@ -74,7 +74,12 @@ func (m *defaultInterfaceMonitor) delayCheckUpdate() {
}
func (m *defaultInterfaceMonitor) postCheckUpdate() {
err := m.checkUpdate()
err := m.interfaceFinder.Update()
if err != nil {
m.logger.Error("update interface: ", err)
return
}
err = m.checkUpdate()
if errors.Is(err, ErrNoRoute) {
if !m.noRoute {
m.noRoute = true