调度超时和Handler匹配不到时,调度状态优化

This commit is contained in:
xueli.xue 2016-09-19 16:25:47 +08:00
parent de2dece0c2
commit 8fde5bed3d
1 changed files with 2 additions and 2 deletions

View File

@ -85,13 +85,13 @@ public class HandlerRouter {
// timestamp check // timestamp check
if (System.currentTimeMillis() - requestModel.getTimestamp() > 60000) { if (System.currentTimeMillis() - requestModel.getTimestamp() > 60000) {
return new ResponseModel(ResponseModel.SUCCESS, "Timestamp Timeout."); return new ResponseModel(ResponseModel.FAIL, "Timestamp Timeout.");
} }
// match action // match action
IAction action = ActionRepository.matchAction(requestModel.getAction()); IAction action = ActionRepository.matchAction(requestModel.getAction());
if (action == null) { if (action == null) {
return new ResponseModel(ResponseModel.SUCCESS, "Action match fail."); return new ResponseModel(ResponseModel.FAIL, "Action match fail.");
} }
return action.execute(requestModel); return action.execute(requestModel);