InstallFoundation method is missing (IRIS 2023.2+)
InstallFoundation method is missing (IRIS 2023.2+)
Recently IRIS 2023.2 was released. This version removed this method InstallFoundation from this class HS.HC.Util.Installer. This was a private method and it was not documented. But it was widely used by the community to install FHIR server.
So if you encounter this error:
<METHOD DOES NOT EXIST> *InstallFoundation,HS.HC.Util.Installer
While build a demo our your own FHIR server, you can fix it by replacing this line:
do ##class(HS.HC.Util.Installer).InstallFoundation(namespace)
to
Do ##class(HS.Util.Installer.Foundation).Install(namespace)
Discussion (2)0
Comments
Thank you for this report @Guillaume Rongier
I checked my deployment scripts, fortunately, they are already using HS.Util.Installer.Foundation.
Just've faced this issue. Thanks @Guillaume Rongier !