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

Adds read/writemaxdrives parameters to cta-catalogue-initialise.sh

parent 618a3aee
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,9 @@ XrootCl::XrootCl(const XrdCl::XRootDStatus& status, const std::string & what) {
w << status.ToStr() << " code:" << status.code
<< " errNo:" << status.errNo
<< " status:" << status.status;
getMessage().str(w.str());
std::string x(w.str());
x.resize(x.find_first_of('\0'));
getMessage().str(x);
}
void XrootCl::throwOnError(const XrdCl::XRootDStatus& status, std::string context)
......
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