Jobs API: The DicomMoveScu job doesn't seems to track progress

I’ll need to investigate a bit further next week because I’m actually puzzled as well :wink: :

  • Orthanc is supposed to warn you if a tag is registered twice for the same level
  • and, indeed, it is not registered at the Instance level by default (I just checked in the code)

Wait and see …

1 Like

Hi @shulard and @sylvainadam,

I could reproduce the issue with this simple configuration (and with a file with the TimezoneOffsetFromUTC of course :wink: ) :

"ExtraMainDicomTags": {
    "Patient": [
      "TimezoneOffsetFromUTC"
    ]
  }

Since the tags from the patient level are copied at the study level, there were 2 entries for this tag for the study.

To me, this is legit to add the TimezoneOffsetFromUTC at the patient level so I have fixed the issue by avoiding duplicates before the tags are written to the DB.

This will be part of the upcoming 1.12.10 release.

Best,

Alain.

1 Like

Hello !

Cool, thank you @alainmazy for the details. Fixing the config has also fixed the transfer issues (as far as I can see) on our side. We’ll deploy the new release whenever it’ll be ready.

Thank you very much @alainmazy !