diff --git a/evcs-modules/evcs-core/src/main/java/com/xhpc/evcs/notification/NotificationCancelOrderTask.java b/evcs-modules/evcs-core/src/main/java/com/xhpc/evcs/notification/NotificationCancelOrderTask.java index 59fcf38a..c262a4b3 100644 --- a/evcs-modules/evcs-core/src/main/java/com/xhpc/evcs/notification/NotificationCancelOrderTask.java +++ b/evcs-modules/evcs-core/src/main/java/com/xhpc/evcs/notification/NotificationCancelOrderTask.java @@ -91,6 +91,9 @@ public class NotificationCancelOrderTask extends CoreDispatcher { if (null != succStat) { if (0 == succStat) { REDIS.deleteObject(orderNo); + } else { + throw new RuntimeException(String.format("push 3rd cancel order status [%s] failed: %s", + cancelOrderResponse.getSuccStat(), responseBody)); } } }