Stability fixes
This commit is contained in:
parent
7c6d5fa688
commit
765e41816a
|
@ -135,7 +135,9 @@ public class TerminologyClientManager {
|
||||||
if (!internalErrors.contains(msg)) {
|
if (!internalErrors.contains(msg)) {
|
||||||
internalErrors.add(msg);
|
internalErrors.add(msg);
|
||||||
}
|
}
|
||||||
e.printStackTrace();
|
if (!monitorServiceURL.contains("tx.fhir.org")) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return getMasterClient().getAddress();
|
return getMasterClient().getAddress();
|
||||||
|
|
||||||
|
@ -211,7 +213,7 @@ public class TerminologyClientManager {
|
||||||
this.cache = cache;
|
this.cache = cache;
|
||||||
this.cacheFile = null;
|
this.cacheFile = null;
|
||||||
|
|
||||||
if (cache != null) {
|
if (cache != null && cache.getFolder() != null) {
|
||||||
try {
|
try {
|
||||||
cacheFile = new File(Utilities.path(cache.getFolder(), "system-map.json"));
|
cacheFile = new File(Utilities.path(cache.getFolder(), "system-map.json"));
|
||||||
if (cacheFile.exists()) {
|
if (cacheFile.exists()) {
|
||||||
|
@ -227,7 +229,7 @@ public class TerminologyClientManager {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void save() {
|
private void save() {
|
||||||
if (cacheFile != null) {
|
if (cacheFile != null && cache.getFolder() != null) {
|
||||||
JsonObject json = new JsonObject();
|
JsonObject json = new JsonObject();
|
||||||
for (String s : Utilities.sorted(resMap.keySet())) {
|
for (String s : Utilities.sorted(resMap.keySet())) {
|
||||||
JsonObject si = new JsonObject();
|
JsonObject si = new JsonObject();
|
||||||
|
|
Loading…
Reference in New Issue