FHIR Chat · Missing R4 package · committers

Stream: committers

Topic: Missing R4 package


view this post on Zulip David Pyke (Jan 03 2020 at 14:47):

http://hl7.org/fhir/R4/package.tgz is showing 404 for me.

view this post on Zulip Michelle (Moseman) Miller (Jan 03 2020 at 15:13):

I'm getting a local build failure today as follows (not sure if what I am seeing is related to what David is seeing):

[java] Error: C:\HL7\fhir\publish\hl7.fhir.r5.core.tgz (The system cannot find the file specified)
[java] java.io.FileNotFoundException: C:\HL7\fhir\publish\hl7.fhir.r5.core.tgz (The system cannot find the file specified)

view this post on Zulip Lloyd McKenzie (Jan 03 2020 at 15:23):

@Grahame Grieve

view this post on Zulip Grahame Grieve (Jan 03 2020 at 19:53):

@David Pyke how are you getting to the problem with R4/package.tgz

view this post on Zulip David Pyke (Jan 03 2020 at 19:55):

http://hl7.org/fhir/directory.html

view this post on Zulip Richard Ettema (Jan 03 2020 at 19:56):

I'm getting the same problem. Go to http://hl7.org/fhir/2020Feb/downloads.html and click on the NPM Package link under the Implementation Tools section.

view this post on Zulip Richard Ettema (Jan 03 2020 at 20:13):

I also ran into the same local build issue Michelle reported. I "fixed" it by finding the reference to the "hl7.fhir.r5.core.tgz" file in the Publisher.java produceSpec() method. Looks like there was a recent update to the code that checks for when the build is not a CI build:

if (!isCIBuild) {
  new PackageCacheManager(true, ToolsVersion.TOOLS_VERSION).addPackageToCache("hl7.fhir.r5.expansions", "current", new FileInputStream(Utilities.path(page.getFolders().dstDir, "hl7.fhir.r5.expansions.tgz")), Utilities.path(page.getFolders().dstDir, "hl7.fhir.r5.expansions.tgz"));
  //new PackageCacheManager(true, ToolsVersion.TOOLS_VERSION).addPackageToCache("hl7.fhir.r5.core", "current", new FileInputStream(Utilities.path(page.getFolders().dstDir, "hl7.fhir.r5.core.tgz")), Utilities.path(page.getFolders().dstDir, "hl7.fhir.r5.core.tgz"));
}

As you see above, my "fix" was to simply comment out the line that attempts to reference the "hl7.fhir.r5.core.tgz" file and then my local build finished successfully.

view this post on Zulip Grahame Grieve (Jan 04 2020 at 07:15):

I have fixed this, but my build won't succeed on the ci-build, for a reason that appears totally impossible to me.

view this post on Zulip Grahame Grieve (Jan 04 2020 at 09:22):

fixed. I had to now create a directory that I've never had to create before

view this post on Zulip David Pyke (Jan 04 2020 at 20:36):

That fixed the build error but the missing R4 package problem still exists...

view this post on Zulip Grahame Grieve (Jan 05 2020 at 02:01):

that probably means you are using Chrome, and it's cached up the javascript - press ctrl-shift-R to reload the javascript

view this post on Zulip David Pyke (Jan 05 2020 at 18:11):

I'm using Firefox, have reset my cache and all links for packages are still 404. I've also tried it in Chrome and it's 404 in that browser too.

view this post on Zulip Jose Costa Teixeira (Jan 05 2020 at 18:27):

All links to packages from that page are giving a 404


Last updated: Apr 12 2022 at 19:14 UTC