Skip to content

Commit

Permalink
fix: Fixed the issue that there was no matching relationship between …
Browse files Browse the repository at this point in the history
…the main entrance
  • Loading branch information
pangdayuan1 committed Sep 14, 2024
1 parent 49f5dcc commit 285a85e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public List<ListResultHolder> queryReplayResult(String recordId, String replayRe
List<ListResultHolder> resultHolderList = new ArrayList<>(categoryTypes.size());
ListResultHolder listResultHolder;
for (MockCategoryType categoryType : categoryTypes) {
if (categoryType.isSkipComparison()) {
if (categoryType.isSkipComparison() && MockCategoryType.Q_MESSAGE_CONSUMER != categoryType) {
continue;
}
MDCTracer.addCategory(categoryType);
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@
</profiles>

<properties>
<revision>1.3.3</revision>
<revision>1.3.4</revision>
<commons-lang3.version>3.3.2</commons-lang3.version>
<java.version>1.8</java.version>

Expand Down

0 comments on commit 285a85e

Please sign in to comment.