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
The SpringIntegrationMetrics class currently calls this.configurer.afterSingletonsInstantiated(); directly. We seem to be getting away with it, but probably by accident rather than design.
The text was updated successfully, but these errors were encountered:
IntegrationManagementConfigurer is registered before SpringIntegrationMetrics so IntegrationManagementConfigurer#afterSingletonsInstantiated will be called before SpringIntegrationMetrics#afterSingletonsInstantiated. Need to confirm with @jhoeller that the ordering is guaranteed.
The
SpringIntegrationMetrics
class currently callsthis.configurer.afterSingletonsInstantiated();
directly. We seem to be getting away with it, but probably by accident rather than design.The text was updated successfully, but these errors were encountered: