Formatting fix.

This commit is contained in:
Ray Jenkins 2022-01-24 20:27:31 -06:00
parent ff49bfaeb5
commit fa1d8fc11e
1 changed files with 4 additions and 2 deletions

View File

@ -2147,7 +2147,8 @@ KeyValueStoreSQLite::KeyValueStoreSQLite(std::string const& filename,
diskBytesUsed,
freeListPages,
id,
&readCursors), "fdb-sqlite-wr");
&readCursors),
"fdb-sqlite-wr");
g_network->setCurrentTask(taskId);
auto p = new Writer::InitAction();
auto f = p->result.getFuture();
@ -2176,7 +2177,8 @@ void KeyValueStoreSQLite::startReadThreads() {
g_network->setCurrentTask(TaskPriority::DiskRead);
for (int i = 0; i < nReadThreads; i++)
readThreads->addThread(
new Reader(filename, type == KeyValueStoreType::SSD_BTREE_V2, readsComplete, logID, &readCursors[i]), "fdb-sqlite-r");
new Reader(filename, type == KeyValueStoreType::SSD_BTREE_V2, readsComplete, logID, &readCursors[i]),
"fdb-sqlite-r");
g_network->setCurrentTask(taskId);
}