fix: previous delay 0 could still cause us to recruit a tlog before processing disk errors

This commit is contained in:
Evan Tschannen 2018-06-11 11:26:30 -07:00
parent 64e0260085
commit 588eaf4b36
1 changed files with 1 additions and 1 deletions

View File

@ -2020,7 +2020,7 @@ ACTOR Future<Void> tLog( IKeyValueStore* persistentData, IDiskQueue* persistentQ
}
//Disk errors need a chance to kill this actor.
Void _ = wait(delay(0.0));
Void _ = wait(delay(0.000001));
if(recovered.canBeSet()) recovered.send(Void());