Skip to content

Commit

Permalink
update to newest ontology, uncomment old reading in of ui-trees
Browse files Browse the repository at this point in the history
  • Loading branch information
juliangruendner committed Aug 30, 2024
1 parent 0e198a8 commit 4da1c93
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,5 @@ googleCodeStyle.xml
/logging/

result.log
ontology

2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ services:
condition: service_healthy
environment:
ELASTIC_HOST: http://feasibility-es:9200
ELASTIC_GIT_TAG: v3.0.0-test
ELASTIC_GIT_TAG: v3.0.0-test.1
ELASTIC_FILEPATH: https://github.com/medizininformatik-initiative/fhir-ontology-generator/raw/TAGPLACEHOLDER/example/fdpg-ontology/
ELASTIC_FILENAME: elastic.zip
# if set to false, existing indices are not overridden.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<java.version>17</java.version>
<mockwebserver.version>4.10.0</mockwebserver.version>
<okhttp3.version>4.10.0</okhttp3.version>
<ontology-tag>v3.0.0-test</ontology-tag>
<ontology-tag>v3.0.0-test.1</ontology-tag>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,7 @@ public TerminologyService(@Value("${app.ontologyFolder}") String uiProfilePath,

private void readInTerminologyEntries() throws IOException {
var files = getFilePathsUiProfiles();

for (var filename : files) {
/*for (var filename : files) {
if (!filename.toLowerCase().endsWith(".json")) {
log.trace("Skipping non-json file: {}", filename);
continue;
Expand All @@ -86,7 +85,7 @@ private void readInTerminologyEntries() throws IOException {
} catch (IOException e) {
throw new IOException("Could not read terminology files", e);
}
}
}*/
}

private void generateTerminologyEntriesWithoutDirectChildren() {
Expand Down

0 comments on commit 4da1c93

Please sign in to comment.