Thanks Ed
I don't know why Google is putting it in spam, I'm posting from the browser. In addition to the study blocking the queue there were a lot of other failed imports. I eventually did the following:
Copied the dicom files that failed import out of the Orthanc container by
> mkdir failedstudies
> cd failedstudies
> docker cp openrem-orthanc-1:/imports/. .
Copied the dicom files into the openrem container by:
> docker cp . openrem:/failedimports/
Opened a shell in the openrem container
> docker exec -it openrem /bin/bash
Executed this script
from openrem.remapp.extractors.rdsr import rdsr
from pathlib import Path
directory = "/failedimports/"
files = Path(directory).glob("*.dcm")
for file in files:
rdsr(file)
print(file)
The files all imported correctly so the problem is not from the OpenREM side but rather Orthanc/Nginx. I will try and trouble shoot further.
Regards
Alan
On Saturday, 12 July 2025 at 14:10:40 UTC+2 Ed McDonagh wrote: