Skip to content

Commit

Permalink
Merge pull request #11261 from apple/release-7.3-clean
Browse files Browse the repository at this point in the history
  • Loading branch information
jzhou77 committed Mar 22, 2024
2 parents a18d851 + f84d441 commit f9a42ee
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions fdbserver/CommitProxyServer.actor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1053,9 +1053,6 @@ ACTOR Future<Void> getResolution(CommitBatchContext* self) {
void assertResolutionStateMutationsSizeConsistent(const std::vector<ResolveTransactionBatchReply>& resolution) {
for (int r = 1; r < resolution.size(); r++) {
ASSERT(resolution[r].stateMutations.size() == resolution[0].stateMutations.size());
if (SERVER_KNOBS->ENABLE_VERSION_VECTOR_TLOG_UNICAST) {
ASSERT_EQ(resolution[0].tpcvMap.size(), resolution[r].tpcvMap.size());
}
for (int s = 0; s < resolution[r].stateMutations.size(); s++) {
ASSERT(resolution[r].stateMutations[s].size() == resolution[0].stateMutations[s].size());
}
Expand Down

0 comments on commit f9a42ee

Please sign in to comment.