You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
org.eclipse.microprofile.health.HealthCheckResponse uses a static var to store the provider, this doesnt enable to mix impl, it should be looked up each time and a cache is acceptable for perf reason while it ensures it releases the mem on gc (key can be a classloader like).
Alternative is to just let the builder factory be injected and let the impl provide the beam -> no static lookup :)
The text was updated successfully, but these errors were encountered:
org.eclipse.microprofile.health.HealthCheckResponse uses a static var to store the provider, this doesnt enable to mix impl, it should be looked up each time and a cache is acceptable for perf reason while it ensures it releases the mem on gc (key can be a classloader like).
Alternative is to just let the builder factory be injected and let the impl provide the beam -> no static lookup :)
The text was updated successfully, but these errors were encountered: