# HG changeset patch # User Alain Mazy # Date 1669989933 -3600 # Node ID 0a9d36187a9105ccb3722a0327433d9b834d2b40 # Parent c387ebeb67b5326c24b7e88110d0ab2fdbc52892# Parent a3c3f13368ea951c8d92c304e4ab3559d8f396b7 merge diff -r a3c3f13368ea -r 0a9d36187a91 OrthancServer/Sources/OrthancRestApi/OrthancRestArchive.cpp --- a/OrthancServer/Sources/OrthancRestApi/OrthancRestArchive.cpp Wed Nov 23 14:28:50 2022 +0100 +++ b/OrthancServer/Sources/OrthancRestApi/OrthancRestArchive.cpp Fri Dec 02 15:05:33 2022 +0100 @@ -445,7 +445,7 @@ if (streaming) { LOG(INFO) << "Streaming a ZIP archive"; - boost::shared_ptr queue(new SharedMessageQueue); + boost::shared_ptr queue(new SharedMessageQueue(1)); job->AcquireSynchronousTarget(new SynchronousZipStream(queue)); diff -r a3c3f13368ea -r 0a9d36187a91 TODO --- a/TODO Wed Nov 23 14:28:50 2022 +0100 +++ b/TODO Fri Dec 02 15:05:33 2022 +0100 @@ -140,6 +140,9 @@ * Strict hierarchical C-FIND: https://groups.google.com/d/msg/orthanc-users/VBHpeGVSNKM/tkaVvjWFBwAJ * report DIMSE error codes in Rest API and job status for /store /query /move /retrieve +* report progress report of C-Move operation in jop progress. There are + progress callbacks available in DIMSE_moveUser + https://groups.google.com/g/orthanc-users/c/c8cGnA7FzsE/m/BSs66D8wBwAJ * Log outgoing C-Find queries ---------