Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feat/retryHttp' into fix/replayR…
Browse files Browse the repository at this point in the history
…esult

# Conflicts:
#	arex-schedule-web-api/pom.xml
#	pom.xml
  • Loading branch information
pangdayuan1 committed Sep 14, 2024
2 parents 9773bb2 + 392aef8 commit 7d5fcd4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions arex-schedule-web-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
<parent>
<artifactId>arex-schedule-parent</artifactId>
<groupId>com.arextest</groupId>
<version>1.2.19</version>
<version>1.2.20</version>
</parent>

<profiles>
Expand Down Expand Up @@ -338,5 +338,5 @@
</properties>
</profile>
</profiles>
<version>1.2.19</version>
<version>1.2.20</version>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ private List<CategoryComparisonHolder> processMatchNeeded(QueryReplayResultRespo
List<CategoryComparisonHolder> decodedListResult = new ArrayList<>(resultHolderList.size());
for (ListResultHolder stringListResultHolder : resultHolderList) {
MockCategoryType categoryType = stringListResultHolder.getCategoryType();
if (categoryType == null || categoryType.isSkipComparison()) {
if (categoryType == null || (categoryType.isSkipComparison() &&
MockCategoryType.Q_MESSAGE_CONSUMER != categoryType)) {
continue;
}

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -320,5 +320,5 @@
<url>https://github.com/arextest/arex-replay-schedule</url>
</scm>
<url>https://github.com/arextest/arex-replay-schedule</url>
<version>1.2.19</version>
<version>1.2.20</version>
</project>

0 comments on commit 7d5fcd4

Please sign in to comment.