diff --git a/ReleaseNotes.md b/ReleaseNotes.md
index e9b806cb8461ce59d00f7131e4707814ec71d728..0a96596d64ea64add2e7815f8ce88ee9e8271218 100644
--- a/ReleaseNotes.md
+++ b/ReleaseNotes.md
@@ -6,7 +6,10 @@ This release introduced an additional gRPC based frontend for storage backends.
 
 ### Upgrade Instructions
 ### Features
+- cta/CTA#1222 - Add minimal gRPC based frOntend for integration with dCache
+
 ### Bug fixes
+- cta/CTA#1225 - Fix bug causing tapeserver to sometimes pop the entire archive queue at the end of the mount
 ### Building and Packaging
 ### Catalogue Schema
 
@@ -22,7 +25,6 @@ This release introduced an additional gRPC based frontend for storage backends.
 - cta/CTA#1152 - Reduce eos free space query load
 - cta/CTA#1231 - Add --loadtimeout option to cta-tape-label and increase default value
 - cta/CTA#977 - Add --drive option to cta-tape-label
-- cta/CTA#1222 - Add minimal gRPC based forntend for integration with dCache
 
 ### Bug fixes
 - cta/CTA#1120 - Fix negative disk space reservation content
diff --git a/tapeserver/castor/tape/tapeserver/daemon/MigrationTaskInjector.hpp b/tapeserver/castor/tape/tapeserver/daemon/MigrationTaskInjector.hpp
index a55fa9874c10b302d9ca28f1931f68b175859e6c..15100e19f60d74cdee8b2a7058c3c0e9f985ec5a 100644
--- a/tapeserver/castor/tape/tapeserver/daemon/MigrationTaskInjector.hpp
+++ b/tapeserver/castor/tape/tapeserver/daemon/MigrationTaskInjector.hpp
@@ -145,7 +145,7 @@ private:
     filesRequested(mf), bytesRequested(mb), lastCall(lc), end(false) {}
     
     Request():
-    filesRequested(-1), bytesRequested(-1), lastCall(true),end(true) {}
+    filesRequested(0), bytesRequested(0), lastCall(true), end(true) {}
     
     const uint64_t filesRequested;
     const uint64_t bytesRequested;