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

Moved archive queue address resetting in Helpers::getLockedAndFetchedQueue<ArchiveQueue>().

It was used in logging.
parent 9f90713f
No related branches found
No related tags found
No related merge requests found
......@@ -101,7 +101,6 @@ void Helpers::getLockedAndFetchedQueue<ArchiveQueue>(ArchiveQueue& archiveQueue,
// We also need to make sure the lock on the queue is released (it is in
// an object and hence not scoped).
if (archiveQueueLock.isLocked()) archiveQueueLock.release();
archiveQueue.resetAddress();
log::ScopedParamContainer params(lc);
params.add("attemptNb", i+1)
.add("exceptionMessage", ex.getMessageValue())
......@@ -115,6 +114,7 @@ void Helpers::getLockedAndFetchedQueue<ArchiveQueue>(ArchiveQueue& archiveQueue,
.add("queueLockTime", queueLockTime)
.add("queueFetchTime", queueFetchTime);
lc.log(log::ERR, "In Helpers::getLockedAndFetchedQueue<ArchiveQueue>(): failed to fetch an existing queue. Retrying.");
archiveQueue.resetAddress();
continue;
} catch (...) {
// Also release the lock if needed here.
......
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