Missing an await on dns.write_hosts call (#4463)

This commit is contained in:
Mike Degatano 2023-07-31 17:29:40 -04:00 committed by GitHub
parent bf5d839c22
commit 81ce0a60f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -459,4 +459,4 @@ class AddonManager(CoreSysAttributes):
# Write hosts files # Write hosts files
with suppress(CoreDNSError): with suppress(CoreDNSError):
self.sys_plugins.dns.write_hosts() await self.sys_plugins.dns.write_hosts()