|
@@ -134,7 +134,7 @@ public class AuthServiceImpl implements AuthService {
|
|
|
}
|
|
|
|
|
|
if (limited(accountTypeEnum, accountValue, clientIp)) {
|
|
|
- throw new StatusException("B-001205", "密码重试次数已达到上限,请1分钟后重试");
|
|
|
+ throw new StatusException("B-001205", "密码重试次数已达到上限,请5分钟后重试");
|
|
|
}
|
|
|
|
|
|
StudentEntity student = null;
|
|
@@ -308,7 +308,7 @@ public class AuthServiceImpl implements AuthService {
|
|
|
times = 1;
|
|
|
}
|
|
|
|
|
|
- redisClient.set(key, times, 60);
|
|
|
+ redisClient.set(key, times, 300);
|
|
|
}
|
|
|
|
|
|
/**
|