Skip to content

Commit

Permalink
fix: op name null check (#367)
Browse files Browse the repository at this point in the history
* fix: op name null check

* chore: bump ver
  • Loading branch information
QizhengMo authored Jan 6, 2025
1 parent accbb10 commit 1e434e8
Show file tree
Hide file tree
Showing 3 changed files with 4 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 @@ -139,7 +139,7 @@
<parent>
<artifactId>arex-schedule-parent</artifactId>
<groupId>com.arextest</groupId>
<version>2.0.5</version>
<version>2.0.6</version>
</parent>

<profiles>
Expand Down Expand Up @@ -337,5 +337,5 @@
</properties>
</profile>
</profiles>
<version>2.0.5</version>
<version>2.0.6</version>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ private boolean ignoreCategory(String operationType, String operationName,
}
for (CategoryDetail categoryDetail : ignoreCategoryTypes) {
if (Objects.equals(categoryDetail.getOperationType(), operationType) && (
categoryDetail.getOperationName() == null ||
StringUtils.isEmpty(categoryDetail.getOperationName()) ||
Objects.equals(categoryDetail.getOperationName(), operationName))) {
return true;
}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -317,5 +317,5 @@
<url>https://github.com/arextest/arex-replay-schedule</url>
</scm>
<url>https://github.com/arextest/arex-replay-schedule</url>
<version>2.0.5</version>
<version>2.0.6</version>
</project>

0 comments on commit 1e434e8

Please sign in to comment.