Don't sync binlog after creation of SQLite encryption key if it will not be used.
This commit is contained in:
parent
8377726001
commit
12914669e6
@ -535,7 +535,9 @@ void TdDb::open_impl(Parameters parameters, Promise<OpenedDatabase> &&promise) {
|
||||
sqlite_key = string(32, ' ');
|
||||
Random::secure_bytes(sqlite_key);
|
||||
binlog_pmc->set("sqlite_key", sqlite_key);
|
||||
binlog_pmc->force_sync(Auto(), "TdDb::open_impl 1");
|
||||
if (parameters.use_file_database_) {
|
||||
binlog_pmc->force_sync(Auto(), "TdDb::open_impl 1");
|
||||
}
|
||||
}
|
||||
new_sqlite_key = DbKey::raw_key(std::move(sqlite_key));
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user