Browse Source

fix:取消推送的错误的异常抛出

master
pref_mail@163.com 6 months ago
parent
commit
6f9e145919
  1. 6
      blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionAsyncServiceImpl.java

6
blade-service/logpm-distribution/src/main/java/com/logpm/distribution/service/impl/DistributionAsyncServiceImpl.java

@ -1585,7 +1585,7 @@ public class DistributionAsyncServiceImpl implements IDistributionAsyncService {
map.put("messageData", JSONUtil.toJsonStr(orderStatusDTO));
rabbitTemplate.convertAndSend(RabbitConstant.HWY_ORDER_STATUS_EXCHANGE, RabbitConstant.HWY_ORDER_STATUS_ROUTING, map);
} catch (Exception e) {
log.error("入库推送失败:{}", e);
log.error("入库推送失败", e);
}
}
}
@ -1615,8 +1615,8 @@ public class DistributionAsyncServiceImpl implements IDistributionAsyncService {
//....工厂
} catch (Exception e) {
log.error("sendReviewFactory ", e);
throw new RuntimeException(e);
log.error("复核推送工厂信息错误 ", e);
// throw new RuntimeException(e);
}
}

Loading…
Cancel
Save