public static void removeInetAddressCache()

in library/src/main/java/com/alibaba/dcm/internal/InetAddressCacheUtilForOld.java [100:108]


    public static void removeInetAddressCache(String host)
            throws NoSuchFieldException, IllegalAccessException, ClassNotFoundException {
        host = host.toLowerCase();

        synchronized (getAddressCacheOfInetAddress()) {
            getCache().remove(host);
            getNegativeCache().remove(host);
        }
    }