diff OrthancServer/ServerIndex.cpp @ 3702:643b5ee86f92

fix handling of errors of OrthancPluginStorageRemove()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 26 Feb 2020 14:36:42 +0100
parents efa815dd2c20
children 2a170a8f1faf
line wrap: on
line diff
--- a/OrthancServer/ServerIndex.cpp	Wed Feb 26 13:21:41 2020 +0100
+++ b/OrthancServer/ServerIndex.cpp	Wed Feb 26 14:36:42 2020 +0100
@@ -152,7 +152,15 @@
              it = pendingFilesToRemove_.begin();
            it != pendingFilesToRemove_.end(); ++it)
       {
-        context_.RemoveFile(it->GetUuid(), it->GetContentType());
+        try
+        {
+          context_.RemoveFile(it->GetUuid(), it->GetContentType());
+        }
+        catch (OrthancException& e)
+        {
+          LOG(ERROR) << "Unable to remove an attachment from the storage area: "
+                     << it->GetUuid() << " (type: " << EnumerationToString(it->GetContentType()) << ")";
+        }
       }
     }