Mercurial > hg > orthanc
changeset 5117:849000df79b6
fix missing handling of StoreStatus_StorageFull
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 02 Dec 2022 15:32:53 +0100 |
parents | c9c052ba309c |
children | 030cd210845e |
files | OrthancServer/Sources/ServerEnumerations.cpp |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/OrthancServer/Sources/ServerEnumerations.cpp Fri Dec 02 15:08:35 2022 +0100 +++ b/OrthancServer/Sources/ServerEnumerations.cpp Fri Dec 02 15:32:53 2022 +0100 @@ -340,6 +340,9 @@ case StoreStatus_FilteredOut: return "FilteredOut"; + case StoreStatus_StorageFull: + return "StorageFull"; + default: throw OrthancException(ErrorCode_ParameterOutOfRange); }