|
|
@@ -140,6 +140,10 @@ public class AfDianRechargeServiceImpl implements AfDianRechargeService {
|
|
|
.body(requestBody.toString())
|
|
|
.execute();
|
|
|
String body = response.body();
|
|
|
+ //虽然超时,但是任务已经提交
|
|
|
+ if (body.contains("Gateway time-out")) {
|
|
|
+ body = "Gateway time-out";
|
|
|
+ }
|
|
|
log.info("任务提交响应: {}", body);
|
|
|
if (body.contains("Please try signing in again")) {
|
|
|
throw BusinessRuntimeException.getInstance("token凭证已过期");
|