Cherry pick core version bump to 6.3.23
This commit is contained in:
parent
1b006bb753
commit
d6c2cbb3e0
|
@ -588,8 +588,8 @@ public class PackageInstallerSvcImpl implements IPackageInstallerSvc {
|
||||||
if (statusTypes.isEmpty()) {
|
if (statusTypes.isEmpty()) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
// Resource has a null status field
|
// Resource has no status field, or an explicitly null one
|
||||||
if (statusTypes.get(0).getValue() == null) {
|
if (!statusTypes.get(0).hasValue() || statusTypes.get(0).getValue() == null) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
// Resource has a status, and we need to check based on type
|
// Resource has a status, and we need to check based on type
|
||||||
|
|
2
pom.xml
2
pom.xml
|
@ -938,7 +938,7 @@
|
||||||
</licenses>
|
</licenses>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<fhir_core_version>6.3.11</fhir_core_version>
|
<fhir_core_version>6.3.23</fhir_core_version>
|
||||||
<spotless_version>2.41.1</spotless_version>
|
<spotless_version>2.41.1</spotless_version>
|
||||||
<surefire_jvm_args>-Dfile.encoding=UTF-8 -Xmx2048m</surefire_jvm_args>
|
<surefire_jvm_args>-Dfile.encoding=UTF-8 -Xmx2048m</surefire_jvm_args>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue