|
|
@@ -413,7 +413,7 @@ public class UserServiceImpl implements UserService {
|
|
|
formData.put("type", type);
|
|
|
HttpUtil.ResponseWrap res = null;
|
|
|
try {
|
|
|
- res = HttpUtil.doPost(url, formData, 30000);
|
|
|
+ res = HttpUtil.doPost(url, formData, 10000);
|
|
|
if (!res.isSuccess()) {
|
|
|
syncLog.error(appId, "同步绑定信息失败", JSON.toJSONString(formData), res.getContent());
|
|
|
} else {
|
|
|
@@ -574,7 +574,7 @@ public class UserServiceImpl implements UserService {
|
|
|
formData.put("hasQuestion", hasQuestion);
|
|
|
HttpUtil.ResponseWrap res = null;
|
|
|
try {
|
|
|
- res = HttpUtil.doPost(url, formData, 30000);
|
|
|
+ res = HttpUtil.doPost(url, formData, 10000);
|
|
|
if (!res.isSuccess()) {
|
|
|
syncLog.error(appId, msg + ",同步用户信息失败", JSON.toJSONString(finalUser), res.getContent());
|
|
|
} else {
|
|
|
@@ -604,7 +604,7 @@ public class UserServiceImpl implements UserService {
|
|
|
formData.put("mobile", user.getMobile());
|
|
|
formData.put("password", noEncryPwd);
|
|
|
formData.put("dialectUID", user.getImId());
|
|
|
- res = HttpUtil.doPost(url, formData, 30000);
|
|
|
+ res = HttpUtil.doPost(url, formData, 10000);
|
|
|
if (!res.isSuccess()) {
|
|
|
throw new Exception(res.getContent());
|
|
|
} else {
|