Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion plugins/interface/intf_base_plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -1650,7 +1650,12 @@ class InterfaceBasePlugin extends Plugin {
await this.applyDnsSettings().then(() => this.updateRouteForDNS()).catch((err) => {
this.log.error(`Failed to apply DNS settings and update DNS route on ${this.name}`, err.message);
});
// this.propagateConfigChanged(true);
this.propagateConfigChanged(true);
this._reapplyNeeded = false;
pl.scheduleReapply();
return pl.publishIfaceChangeApplied();
}).catch((err) => {
this.log.error(`Failed to apply DNSv6 settings on ${this.name}`, err.message);
});
}
break;
Expand Down