Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion manifests/java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4108,7 +4108,6 @@ manifest:
- weblog_declaration:
"*": v1.60.0-SNAPSHOT
spring-boot-3-native: irrelevant (GraalVM. Tracing support only)
tests/test_resource_renaming.py::Test_Resource_Renaming_Stats_Aggregation_Keys::test_stats_aggregation_with_method_and_endpoint: bug (APPSEC-61406)
tests/test_rum_injection.py:
- weblog_declaration:
"*": irrelevant (RUM injection only supported for spring-boot)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_resource_renaming.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def test_stats_aggregation_with_method_and_endpoint(self):
for point in stats_points:
method = point.get("HTTPMethod", "")
endpoint = point.get("HTTPEndpoint", "")
hits = point.get("Hits", 0)
hits = point.get("TopLevelHits", 0)

if (method, endpoint) in expected_hits:
actual_hits[(method, endpoint)] = actual_hits.get((method, endpoint), 0) + hits
Expand Down
Loading