RolloutConfigManager in aem 6.5 localhost is always unsatisfied in system components
I am following below code to retrieve rollout config from RolloutConfigManager. But in logs i always see "rolloutConfigManager" is null.
Below is the code and issue .
@3214626
private RolloutConfigManager rolloutConfigManager;
RolloutConfig rolloutConfig;
public void create(Resource resolver resResolver, string rolloutConfigPath) {
if (rolloutConfigManager != null) {
log.info("inside config manager for rollout: {}", rolloutConfigPath);
rolloutConfig = rolloutConfigManager.getRolloutConfig(rolloutConfigPath);
log.info("for rollout: {}", rolloutConfig);
}else{
log.info("rolloutConfigManager is null");
}
}
and /system/console/components/, i see this issue-

Any idea on how to fix this.
and in my local i have -
<aem.sdk.api>2023.12.14697.20231215T125030Z</aem.sdk.api>