Skip to content

Commit

Permalink
Corrected default FHIR store URL
Browse files Browse the repository at this point in the history
Also added a helpful error diagnostic and bumped the POM minor version.
  • Loading branch information
DavidCroftDKFZ committed Aug 14, 2024
1 parent 74d7279 commit d59c796
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>
<groupId>de.samply</groupId>
<artifactId>directory_sync_service</artifactId>
<version>1.3.2</version>
<version>1.3.3</version>
<name>directory_sync_service</name>
<description>Directory sync</description>
<url>https://github.com/samply/directory_sync_service</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ private boolean syncWithDirectory(Configuration configuration) {
Either<String, Void> initResourcesOutcome = sync.initResources();
if (initResourcesOutcome.isLeft()) {
logger.error("__________ syncWithDirectory: problem initializing FHIR resources: " + initResourcesOutcome.getLeft());
logger.error("__________ syncWithDirectory: fhirStoreUrl: " + fhirStoreUrl);
return false;
}
List<OperationOutcome> operationOutcomes;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ds:
cron: ""
fhir:
store:
url: "http://bridgehead-bbmri-blaze:8080"
url: "http://bridgehead-bbmri-blaze:8080/fhir"
directory:
url: "https://directory.bbmri-eric.eu"
user:
Expand Down

0 comments on commit d59c796

Please sign in to comment.