Skip to content
Snippets Groups Projects
Commit 8f21c4a7 authored by Eric Cano's avatar Eric Cano
Browse files

Added backtrace in error case of ArchiveRequest::garbageCollect().

parent aedb3156
Branches
Tags
No related merge requests found
......@@ -344,7 +344,8 @@ void ArchiveRequest::garbageCollect(const std::string &presumedOwner, AgentRefer
// This could be the end of the request, with various consequences.
// This is handled here:
if (finishIfNecessary()) {
lc.log(log::ERR, "In ArchiveRequest::garbageCollect(): failed to requeue the job. Failed it and removed the request as a consequence.");
lc.log(log::ERR, "In ArchiveRequest::garbageCollect(): failed to requeue the job. Failed it and removed the request as a consequence. Backtrace follows.");
lc.logBacktrace(log::ERR, "In ArchiveRequest::garbageCollect(): ");
return;
} else {
commit();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment