public static synchronized OkHttpClient getHTTPClient()

in src/main/java/org/elasticsearch/utils/HttpClientHelper.java [19:31]


    public static synchronized OkHttpClient getHTTPClient() {
        if (null == httpClient) {
            try {
                PermissionHelper.doPrivileged(() -> {
                    httpClient = new OkHttpClient();
                    return httpClient;
                });
            } catch (IOException e) {
                return httpClient;
            }
        }
        return httpClient;
    }