From 8580cfd813db166a6f4cab2787fb05f82b05e368 Mon Sep 17 00:00:00 2001 From: James Cherry Date: Tue, 16 Sep 2025 15:16:05 -0700 Subject: [PATCH] pathIndexMapEqual Signed-off-by: James Cherry --- search/TagGroup.cc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/search/TagGroup.cc b/search/TagGroup.cc index aed495e5..2496ef11 100644 --- a/search/TagGroup.cc +++ b/search/TagGroup.cc @@ -343,10 +343,7 @@ pathIndexMapEqual(const PathIndexMap *path_index_map1, size_t path_index2; bool exists2; path_index_map2->findKey(tag1, tag2, path_index2, exists2); - if (!exists2 - // ArrivalMap equal function is TagMatchEqual, so make sure - // the tag is an exact match. - || tag2 != tag1) + if (!exists2) return false; } return true;