mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Fix bogus error reporting.
This commit is contained in:
@@ -164,7 +164,7 @@ bool SqliteDatabase::getNextRow(bool finalize)
|
|||||||
if (rc==SQLITE_ROW)
|
if (rc==SQLITE_ROW)
|
||||||
return(true);
|
return(true);
|
||||||
assert((rc != SQLITE_BUSY) && (rc != SQLITE_LOCKED));
|
assert((rc != SQLITE_BUSY) && (rc != SQLITE_LOCKED));
|
||||||
cLog(lsWARNING) << "Rerror: " << mHost << ": " << rc;
|
tLog((rc != SQLITE_DONE), lsWARNING) << "Rerror: " << mHost << ": " << rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (finalize)
|
if (finalize)
|
||||||
|
|||||||
Reference in New Issue
Block a user