nisiyong commented on PR #387: URL: https://github.com/apache/skywalking-java/pull/387#issuecomment-1320809755
Finally, the agent-test-tools has fixed the prefix bug. And at the same time, I found `start with` or `not blank` couldn't use at the MeterItems tag value, because the MeterId will compare with the MeterItems tag value. [MeterId.java](https://github.com/apache/skywalking-agent-test-tool/blob/master/validator/src/main/java/org/apache/skywalking/plugin/test/agent/tool/validator/entity/MeterId.java) ```java public class MeterId { ... @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; MeterId meterId = (MeterId) o; return Objects.equals(name, meterId.name) && Objects.equals(tags, meterId.tags); } } ``` So I am not going to change the dubbo thread pool name, but the agent-test-tools still support the new operators `start with` and `end with` in other cases. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
