|
@@ -163,7 +163,11 @@ public class KD100Util {
|
|
|
throw new ServiceException("监听物流消息失败:" + result.getBody());
|
|
|
}
|
|
|
} else {
|
|
|
- throw new ServiceException("监听物流消息失败:" + result.getError());
|
|
|
+ String error = result.getError();
|
|
|
+ log.error("监听物流消息失败:" + error);
|
|
|
+ if (!ObjectUtil.contains(error, "重复订阅")) {
|
|
|
+ throw new ServiceException("监听物流消息失败:" + error);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|