Skip to content
Snippets Groups Projects
Commit 8e99db9f authored by Michael Davis's avatar Michael Davis
Browse files

[frontend] Always fails archive requests for files in the fail_archive_requests_test storage class

parent 2207989c
No related branches found
No related tags found
No related merge requests found
......@@ -383,6 +383,11 @@ void RequestMessage::processCLOSEW(const cta::eos::Notification &notification, c
throw PbException(std::string(__FUNCTION__) + ": Failed to find the extended attribute named sys.archive.storage_class");
}
// For testing, this storage class will always fail
if(storageClassItor->second == "fail_archive_requests_test") {
throw PbException("File is in fail_archive_requests_test storage class, which always fails.");
}
cta::common::dataStructures::ArchiveRequest request;
checksum::ProtobufToChecksumBlob(notification.file().csb(), request.checksumBlob);
request.diskFileInfo.owner_uid = notification.file().owner().uid();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment