diff --git a/scheduler/OStoreDB/OStoreDB.cpp b/scheduler/OStoreDB/OStoreDB.cpp
index 34b385bb298def8e9a370dbaad3f0021410f1990..65ebf0d0d198354df60439b89eefbe9433455241 100644
--- a/scheduler/OStoreDB/OStoreDB.cpp
+++ b/scheduler/OStoreDB/OStoreDB.cpp
@@ -2283,7 +2283,7 @@ std::list<std::unique_ptr<SchedulerDatabase::RetrieveJob> > OStoreDB::RetrieveMo
         } catch (cta::exception::Exception & e) {
           std::string debugType=typeid(e).name();
           if (typeid(e) == typeid(Backend::NoSuchObject) ||
-              typeid(e) == typeid(objectstore::ArchiveRequest::WrongPreviousOwner)) {
+              typeid(e) == typeid(objectstore::RetrieveRequest::WrongPreviousOwner)) {
             // The object was not present or not owned, so we skip it. It should be removed from
             // the queue.
             jobsToDequeue.emplace_back((*j)->m_retrieveRequest.getAddressIfSet());