You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently do not include a runtime dependency on Netty's macOS-specific DNS resolver package, which causes the following warning on startup:
2023-12-11 11:54:31 WARN io.netty.resolver.dns.DnsServerAddressStreamProviders - Can not find io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider in the classpath, fallback to system defaults. This may result in incorrect DNS resolutions on MacOS. Check whether you have a dependency on 'io.netty:netty-resolver-dns-native-macos'
This doesn't seem to be causing examples to break in an obvious way but there are probably cases where it is desirable to use the native resolver config.
We may address this by including something like the following in our examples' project Gradle config:
Since ARM-architecture macOS is likely going to be a common development platform, we may wish to fix this purely to suppress the WARN noise even if it doesn't break anything.
The text was updated successfully, but these errors were encountered:
We currently do not include a runtime dependency on Netty's macOS-specific DNS resolver package, which causes the following warning on startup:
This doesn't seem to be causing examples to break in an obvious way but there are probably cases where it is desirable to use the native resolver config.
We may address this by including something like the following in our examples' project Gradle config:
Since ARM-architecture macOS is likely going to be a common development platform, we may wish to fix this purely to suppress the WARN noise even if it doesn't break anything.
The text was updated successfully, but these errors were encountered: