Add provisioning keepalive endpoint.

// FREEBIE
This commit is contained in:
Moxie Marlinspike 2015-07-28 15:22:51 -07:00
parent e0b480e232
commit 3327bf4788
1 changed files with 7 additions and 0 deletions

View File

@ -45,4 +45,11 @@ public class KeepAliveController {
return Response.ok().build();
}
@Timed
@GET
@Path("/provisioning")
public Response getProvisioningKeepAlive() {
return Response.ok().build();
}
}