# HG changeset patch # User Sebastien Jodogne # Date 1438329468 -7200 # Node ID 5b49f5264aae817e48d2d947804726069866483d # Parent 4f82bdd698d0e32c5fd018c41b1d37d03a5a47b4 warning about deadlock with Orthanc 0.9.1 diff -r 4f82bdd698d0 -r 5b49f5264aae Plugin/Plugin.cpp --- a/Plugin/Plugin.cpp Thu Jul 30 16:57:35 2015 +0200 +++ b/Plugin/Plugin.cpp Fri Jul 31 09:57:48 2015 +0200 @@ -111,6 +111,15 @@ return -1; } + { + std::string version(context_->orthancVersion); + if (version == "0.9.1") + { + OrthancPluginLogWarning(context_, "If using STOW-RS, the DICOMweb plugin can lead to " + "deadlocks in Orthanc version 0.9.1. Please upgrade Orthanc!"); + } + } + dictionary_ = &gdcm::Global::GetInstance().GetDicts().GetPublicDict();