It looks like I can set a global request timeout using:
quarkus.http.read-timeout
Is there a way to override that on a per-endpoint basis? For example, something like my made up RequestTimeout
annotation?
@RequestTimeout("120s")
@GET
@Path("/long-running-get")
public MyData getMyData() {
}