Skip to content
Snippets Groups Projects
Commit 805917cd authored by Steven Murray's avatar Steven Murray
Browse files

Corrected error message of OracleCatalogue::filesWrittenToTape()

parent c3860034
No related branches found
No related tags found
No related merge requests found
......@@ -609,7 +609,7 @@ void OracleCatalogue::filesWrittenToTape(const std::set<TapeFileWritten> &events
}
exception::Exception ex;
ex.getMessage() << " failed: Lost the database connection after trying " << maxTries << " times";
ex.getMessage() << "Lost the database connection after trying " << maxTries << " times";
throw ex;
} catch(exception::Exception &ex) {
throw exception::Exception(std::string(__FUNCTION__) + " failed: " + ex.getMessage().str());
......
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