|
@@ -20,7 +20,7 @@ public class DubboServiceConfig {
|
|
|
public ConsoleService consoleService(OssProperties ossProperties) {
|
|
public ConsoleService consoleService(OssProperties ossProperties) {
|
|
|
RemoteService<ConsoleService> remoteService = new RemoteService<>();
|
|
RemoteService<ConsoleService> remoteService = new RemoteService<>();
|
|
|
String host = ossProperties.getConsoleHost();
|
|
String host = ossProperties.getConsoleHost();
|
|
|
- int port = 14030;
|
|
|
|
|
|
|
+ int port = ossProperties.getConsolePort();
|
|
|
return remoteService.getService(host, port, ConsoleService.class);
|
|
return remoteService.getService(host, port, ConsoleService.class);
|
|
|
}
|
|
}
|
|
|
|
|
|