diff --git a/src/main/java/org/gridsuite/explore/server/services/SpreadsheetConfigCollectionService.java b/src/main/java/org/gridsuite/explore/server/services/SpreadsheetConfigCollectionService.java index 10a9e5d..d2d7f3f 100644 --- a/src/main/java/org/gridsuite/explore/server/services/SpreadsheetConfigCollectionService.java +++ b/src/main/java/org/gridsuite/explore/server/services/SpreadsheetConfigCollectionService.java @@ -37,7 +37,7 @@ public class SpreadsheetConfigCollectionService implements IDirectoryElementsSer @Autowired public SpreadsheetConfigCollectionService(RestTemplate restTemplate, RemoteServicesProperties remoteServicesProperties) { - this.spreadsheetConfigServerBaseUri = remoteServicesProperties.getServiceUri("spreadsheet-config-server"); + this.spreadsheetConfigServerBaseUri = remoteServicesProperties.getServiceUri("study-config-server"); this.restTemplate = restTemplate; } diff --git a/src/main/java/org/gridsuite/explore/server/services/SpreadsheetConfigService.java b/src/main/java/org/gridsuite/explore/server/services/SpreadsheetConfigService.java index c11d9ad..8455ad6 100644 --- a/src/main/java/org/gridsuite/explore/server/services/SpreadsheetConfigService.java +++ b/src/main/java/org/gridsuite/explore/server/services/SpreadsheetConfigService.java @@ -41,7 +41,7 @@ public class SpreadsheetConfigService implements IDirectoryElementsService { @Autowired public SpreadsheetConfigService(RestTemplate restTemplate, RemoteServicesProperties remoteServicesProperties) { - this.spreadsheetConfigServerBaseUri = remoteServicesProperties.getServiceUri("spreadsheet-config-server"); + this.spreadsheetConfigServerBaseUri = remoteServicesProperties.getServiceUri("study-config-server"); this.restTemplate = restTemplate; } diff --git a/src/main/resources/application-local.yml b/src/main/resources/application-local.yml index 5ac2cd1..00e62a3 100644 --- a/src/main/resources/application-local.yml +++ b/src/main/resources/application-local.yml @@ -46,6 +46,6 @@ gridsuite: name: shortcircuit-server base-uri: http://localhost:5031 - - name: spreadsheet-config-server + name: study-config-server base-uri: http://localhost:5035