Mercurial > hg > orthanc-dicomweb
changeset 727:2bd27a266937 default tip
fix spelling of DICOMWeb as DICOMweb
| author | Sebastien Jodogne <s.jodogne@gmail.com> |
|---|---|
| date | Wed, 12 Nov 2025 13:12:49 +0100 |
| parents | d757ef9df8a7 |
| children | |
| files | NEWS Plugin/Plugin.cpp |
| diffstat | 2 files changed, 6 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/NEWS Fri Oct 24 16:33:29 2025 +0200 +++ b/NEWS Wed Nov 12 13:12:49 2025 +0100 @@ -16,7 +16,8 @@ only showing the time required to execute a WADO-RS query. For example: WADO-RS: elapsed: 26106623 us, rate: 14.86 instances/s, 155.23Mbps * Fix false errors logs generated e.g when OHIF requests the /dicom-web/studies/../metadata route: - "dicom-web:/Configuration.cpp:643] Unsupported return MIME type: application/dicom+json, multipart/related; type=application/octet-stream; transfer-syntax=*, will return DICOM+JSON" + "dicom-web:/Configuration.cpp:643] Unsupported return MIME type: application/dicom+json, + multipart/related; type=application/octet-stream; transfer-syntax=*, will return DICOM+JSON" Version 1.20 (2025-05-12)
--- a/Plugin/Plugin.cpp Fri Oct 24 16:33:29 2025 +0200 +++ b/Plugin/Plugin.cpp Wed Nov 12 13:12:49 2025 +0100 @@ -747,7 +747,10 @@ std::string publicUrlRoot = OrthancPlugins::Configuration::GetPublicRoot(); LOG(WARNING) << "DICOMweb public root: " << publicUrlRoot; - LOG(WARNING) << "The DICOMWeb plugin will use " << (OrthancPlugins::Configuration::GetWadoRsLoaderThreadsCount() == 0 ? 1 : OrthancPlugins::Configuration::GetWadoRsLoaderThreadsCount()) << " threads to load DICOM files for WADO-RS queries"; + LOG(WARNING) << "The DICOMweb plugin will use " + << (OrthancPlugins::Configuration::GetWadoRsLoaderThreadsCount() == 0 ? 1 : + OrthancPlugins::Configuration::GetWadoRsLoaderThreadsCount()) + << " threads to load DICOM files for WADO-RS queries"; } else {
