Skip to content

Commit

Permalink
Throw an exception rather than aborting when wait_for_session times out
Browse files Browse the repository at this point in the history
  • Loading branch information
tgoyne committed Sep 29, 2022
1 parent f0ed588 commit 5f191dd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/object-store/util/test_file.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,9 @@ static std::error_code wait_for_session(Realm& realm,
bool completed = cv.wait_for(lock, timeout, [&]() {
return wait_flag == true;
});
REALM_ASSERT_RELEASE(completed);
if (!completed) {
throw std::runtime_error("wait_For_session() timed out");
}
return ec;
}

Expand Down

0 comments on commit 5f191dd

Please sign in to comment.