测试放开

master
wangning 6 years ago
parent 9ffd3f7643
commit b5e85a0c7c

@ -112,10 +112,11 @@ public class SimpleClientApplyServiceImpl implements SimpleClientApplyService {
@Override
public void verifyRegisterSMSCode(String codeKey, String phoneNumber) {
String rediskey = getRegisterClientRedisKey(phoneNumber);
String codeValue = stringRedisTemplate.boundValueOps(rediskey).get();
if (codeValue == null || !codeValue.equals(codeKey)) {
throw new BadRequestException("Verification code has expired or is not correct");
}
// TODO: 2018/6/1 kira
// String codeValue = stringRedisTemplate.boundValueOps(rediskey).get();
// if (codeValue == null || !codeValue.equals(codeKey)) {
// throw new BadRequestException("Verification code has expired or is not correct");
// }
stringRedisTemplate.delete(rediskey);
}

Loading…
Cancel
Save