# HG changeset patch # User Alain Mazy # Date 1669989900 -3600 # Node ID c387ebeb67b5326c24b7e88110d0ab2fdbc52892 # Parent b89833d7ce223e73e3db1ee3b93a87f8ee1fbf9b todo: move progress repot diff -r b89833d7ce22 -r c387ebeb67b5 OrthancServer/Sources/OrthancRestApi/OrthancRestArchive.cpp --- a/OrthancServer/Sources/OrthancRestApi/OrthancRestArchive.cpp Wed Nov 23 11:47:44 2022 +0100 +++ b/OrthancServer/Sources/OrthancRestApi/OrthancRestArchive.cpp Fri Dec 02 15:05:00 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 b89833d7ce22 -r c387ebeb67b5 TODO --- a/TODO Wed Nov 23 11:47:44 2022 +0100 +++ b/TODO Fri Dec 02 15:05:00 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 ---------