0
0
mirror of https://github.com/signalapp/Signal-Server.git synced 2024-09-19 19:42:18 +02:00

Log IOException from assessCaptcha

This commit is contained in:
Ameya Lokare 2024-09-13 13:37:37 -07:00
parent 374fe087bc
commit dd7a20a774

View File

@ -397,8 +397,9 @@ public class VerificationController {
Tag.of(SCORE_TAG_NAME, assessmentResult.getScoreString())))
.increment();
} catch (IOException e) {
throw new ServerErrorException(Response.Status.SERVICE_UNAVAILABLE);
} catch (final IOException e) {
logger.error("error assessing captcha", e);
throw new ServerErrorException(Response.Status.SERVICE_UNAVAILABLE, e);
}
if (assessmentResult.isValid(captchaScoreThreshold)) {