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
Currently we have an issue that the PrometheusRSocketClientAutoConfiguration does not initialize the PrometheusRSocketClient when the lazy-initialization is set to true.
I guess this is because PrometheusRSocketClient is not required anywhere due to autowiring.
Suggestion would be to add @Lazy(false) and test if this is working in this case.
Which version are you using? We've released 2.0.0-M1 which is using Boot 3.3, I'm not sure it will make any difference but there is a chance that PrometheusRSocketClientAutoConfiguration will create the client even if lazy-init is true.
Currently we have an issue that the
PrometheusRSocketClientAutoConfiguration
does not initialize thePrometheusRSocketClient
when thelazy-initialization
is set totrue
.I guess this is because
PrometheusRSocketClient
is not required anywhere due to autowiring.Suggestion would be to add
@Lazy(false)
and test if this is working in this case.@onobc / @jonatan-ivanov WDYT?
The text was updated successfully, but these errors were encountered: