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

Fixed log message.

parent 94970288
No related branches found
No related tags found
No related merge requests found
......@@ -254,7 +254,7 @@ BackendRados::ScopedLock* BackendRados::lockShared(std::string name) {
cta::exception::Errnum::throwOnReturnedErrno (-m_radosCtx.remove(name),
std::string("In ObjectStoreRados::lockShared, failed to librados::IoCtx::remove: ") +
name + "//");
throw cta::exception::Errnum(ENOENT, std::string ("In BackendRados::lockShared(): trying to lock a non-existing object") + name);
throw cta::exception::Errnum(ENOENT, std::string ("In BackendRados::lockShared(): trying to lock a non-existing object: ") + name);
}
ret->set(name, client);
return ret.release();
......
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