mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-21 12:08:03 +01:00
Send an HTTP/440 response instead of an HTTP/502 if an upstream provider rejects a "send verification code" request
This commit is contained in:
committed by
Jon Chambers
parent
43fd8518c0
commit
5c31ef43c9
@@ -1071,7 +1071,7 @@ class VerificationControllerTest {
|
||||
.request()
|
||||
.header(HttpHeaders.X_FORWARDED_FOR, "127.0.0.1");
|
||||
try (Response response = request.post(Entity.json(requestVerificationCodeJson("voice", "ios")))) {
|
||||
assertEquals(HttpStatus.SC_BAD_GATEWAY, response.getStatus());
|
||||
assertEquals(RegistrationServiceSenderExceptionMapper.REMOTE_SERVICE_REJECTED_REQUEST_STATUS, response.getStatus());
|
||||
|
||||
final Map<String, Object> responseMap = response.readEntity(Map.class);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user