Skip to content

2.23.0

Compare
Choose a tag to compare
@svc-autorelease svc-autorelease released this 16 Oct 15:11
· 2070 commits to develop since this release
1854da2
Type Description Link
Improvement Implement error prone ReverseDnsLookup for unexpected reverse dns lookups

Calling address.getHostName may result in a DNS lookup which is a network request,
making the invocation significantly more expensive than expected depending on the
environment.
This check is intended to be advisory - it's fine to
@SuppressWarnings("ReverseDnsLookup") in certain cases, but is usually not
recommended.
#970