in src/main/java/com/aliyun/tea/okhttp/ClientHelper.java [11:19]
public static OkHttpClient getOkHttpClient(String host, int port, Map<String, Object> map) throws Exception {
String key = getClientKey(host, port, map);
OkHttpClient client = clients.get(key);
if (null == client) {
client = creatClient(map);
clients.put(key, client);
}
return client;
}