We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19f5d4c commit 6431febCopy full SHA for 6431feb
jmx-scraper/src/integrationTest/java/io/opentelemetry/contrib/jmxscraper/assertions/AttributeMatcher.java
@@ -51,6 +51,8 @@ public boolean equals(Object o) {
51
return false;
52
}
53
AttributeMatcher other = (AttributeMatcher) o;
54
+ // Do not attributeValue into account so AttributeMatcher instances can be stored in collections
55
+ // with guarantee of uniqueness per attribute
56
return Objects.equals(attributeName, other.attributeName);
57
58
0 commit comments