fixing merge conficts
This commit is contained in:
parent
3f8f44dd16
commit
e3cbd63b6d
|
@ -271,11 +271,11 @@ ACTOR Future<Void> liveReader(Database cx, Reference<FeedTestData> data, Version
|
|||
// pendingCheck wasn't empty before whenAtLeast, and nextCheckVersion = the front version, so if
|
||||
// either of these are true, the data was popped concurrently and we can move on to checking the
|
||||
// next value
|
||||
TEST(true); // popped while waiting for whenAtLeast to check next value
|
||||
CODE_PROBE(true, "popped while waiting for whenAtLeast to check next value");
|
||||
continue;
|
||||
}
|
||||
while (!buffered.empty() && buffered.front().version < data->poppingVersion) {
|
||||
TEST(true); // live reader ignoring data that is being popped
|
||||
CODE_PROBE(true, "live reader ignoring data that is being popped");
|
||||
buffered.pop_front();
|
||||
}
|
||||
if (buffered.empty()) {
|
||||
|
|
Loading…
Reference in New Issue