Create keys not simultaneously.

This commit is contained in:
John Preston 2019-11-19 19:22:02 +03:00
parent e6d3b2b098
commit f424cb54f7
1 changed files with 6 additions and 6 deletions

View File

@ -183,9 +183,10 @@ DcKeyCreator::DcKeyCreator(
answered(); answered();
}); });
pqSend(&_temporary, _request.temporaryExpiresIn);
if (_request.persistentNeeded) { if (_request.persistentNeeded) {
pqSend(&_persistent, 0); pqSend(&_persistent, 0);
} else {
pqSend(&_temporary, _request.temporaryExpiresIn);
} }
} }
@ -602,13 +603,12 @@ void DcKeyCreator::failed(Error error) {
} }
void DcKeyCreator::done() { void DcKeyCreator::done() {
Expects(_temporary.stage != Stage::None); if (_temporary.stage == Stage::None) {
pqSend(&_temporary, _request.temporaryExpiresIn);
if (_persistent.stage != Stage::None && _persistent.stage != Stage::Ready) {
return;
} else if (_temporary.stage != Stage::Ready) {
return; return;
} }
Assert(_temporary.stage == Stage::Ready);
Assert(_persistent.stage == Stage::Ready || _persistent.stage == Stage::None);
auto result = Result(); auto result = Result();
result.temporaryKey = std::make_shared<AuthKey>( result.temporaryKey = std::make_shared<AuthKey>(