Respond to all "message send" attempts with HTTP/503.

This commit is contained in:
Jon Chambers
2021-01-15 15:13:21 -05:00
committed by Jon Chambers
parent 46b981bb2f
commit 81c1ba6eef
2 changed files with 6 additions and 2 deletions

View File

@@ -117,7 +117,7 @@ public class MessageController {
@Valid IncomingMessageList messages)
throws RateLimitExceededException
{
if (!source.isPresent() && !accessKey.isPresent()) {
/* if (!source.isPresent() && !accessKey.isPresent()) {
throw new WebApplicationException(Response.Status.UNAUTHORIZED);
}
@@ -186,7 +186,9 @@ public class MessageController {
.type(MediaType.APPLICATION_JSON)
.entity(new StaleDevices(e.getStaleDevices()))
.build());
}
} */
throw new WebApplicationException(Response.status(503).build());
}
@Timed