1
0
mirror of https://gitee.com/mirrors/Spring-Cloud-Alibaba.git synced 2021-06-26 13:25:11 +08:00

fix(nacos): Fix parameter type errors

This commit is contained in:
chuntaojun 2019-09-04 15:26:37 +08:00
parent d1b64df9d2
commit 1f7d43200c

View File

@ -43,8 +43,9 @@ public class NacosConfigBootstrapConfiguration {
@Bean
public NacosPropertySourceLocator nacosPropertySourceLocator(
NacosConfigManager nacosConfigManager,
NacosConfigProperties nacosConfigProperties) {
return new NacosPropertySourceLocator(nacosConfigProperties);
return new NacosPropertySourceLocator(nacosConfigManager, nacosConfigProperties);
}
}