1;拉取订单 去除隧道ip日志打印

This commit is contained in:
wangshuai 2024-08-08 09:49:30 +08:00
parent 5116c42be4
commit 5011872a5c
1 changed files with 0 additions and 2 deletions

View File

@ -1069,10 +1069,8 @@ public class MeituanServiceImpl implements IMeituanService {
// private CloseableHttpClient proxyHttpClient() { // private CloseableHttpClient proxyHttpClient() {
private CloseableHttpClient proxyHttpClient(String ipPort) { private CloseableHttpClient proxyHttpClient(String ipPort) {
log.error("==============隧道代理返回结果=========="+ipPort);
String proxyHost = ipPort.split(":")[0]; String proxyHost = ipPort.split(":")[0];
int proxyPort = Integer.valueOf(ipPort.split(":")[1]); int proxyPort = Integer.valueOf(ipPort.split(":")[1]);
log.error("==============隧道代理返回结果解析地址,端口=========="+proxyHost+","+proxyPort);
String username = proxyProperties.getAccount(); String username = proxyProperties.getAccount();
String password = proxyProperties.getPwd(); String password = proxyProperties.getPwd();
HttpHost proxy = new HttpHost(proxyHost, proxyPort); HttpHost proxy = new HttpHost(proxyHost, proxyPort);