-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kvserver: fix bug with computing equivalence class
Previously, while computing the stores that belong inside the same equivalence class, we were incorrectly including an existing store in the list of candidate stores. For instance, an equivalence class that should look like the following: ``` eqClass: existing: [n1, n2] candidates: [n3, n4] ``` was instead being computed as the following: ``` eqClass: existing: [n1, n2] candidates: [n1, n3, n4] ``` This was throwing things off in the logic implemented by #72296 Release note: None
- Loading branch information
1 parent
6ca0da1
commit c5f374a
Showing
3 changed files
with
80 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.