Mercurial > hg > orthanc
diff OrthancServer/ServerIndex.cpp @ 3703:2eeaa076c8f6 storage-commitment
integration mainline->storage-commitment
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 26 Feb 2020 14:36:58 +0100 |
parents | 643b5ee86f92 |
children | 2a170a8f1faf |
line wrap: on
line diff
--- a/OrthancServer/ServerIndex.cpp Wed Feb 26 13:22:35 2020 +0100 +++ b/OrthancServer/ServerIndex.cpp Wed Feb 26 14:36:58 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()) << ")"; + } } }