Open
Description
Describe the bug
``
public final class AuthenticationResource {
public static final String RESOURCE_PATH = "/api/v1/auth";
@Inject
AuthenticationService authenticationService;
@Inject
KeycloakService keycloakService;
@Inject
MailerService mailerService;
@Inject
ClientService clientService;
@Inject
Logger log;
@Inject
UriInfo uriInfo;
//Receives exception
@GET
@PermitAll
@Gauge(name = "auth.testing", absolute = true, unit = MetricUnits.GIGABYTES)
@Path("/free-memory")
public Response getFreeMemory() {
return Response.ok(clientService.getFreeMemory())
.build();
}
Expected behavior
No response
Actual behavior
No response
How to Reproduce?
No response
Output of uname -a
or ver
19
Output of java -version
17
Quarkus version or git rev
No response
Build tool (ie. output of mvnw --version
or gradlew --version
)
No response
Additional information
No response