Skip to content

Commit b448a45

Browse files
authored
Merge pull request #2129 from newrelic/update-jfr-daemon
Update to JFR daemon 1.13.0
2 parents 1e4634d + 56abbec commit b448a45

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

newrelic-agent/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ dependencies {
7474
transitive = false
7575
}
7676
shadowIntoJar("com.newrelic.agent.java:newrelic-module-util-java:2.1")
77-
shadowIntoJar("com.newrelic:jfr-daemon:1.12.0")
77+
shadowIntoJar("com.newrelic:jfr-daemon:1.13.0")
7878
shadowIntoJar "org.ow2.asm:asm:$asmVersion"
7979
shadowIntoJar "org.ow2.asm:asm-tree:$asmVersion"
8080
shadowIntoJar "org.ow2.asm:asm-commons:$asmVersion"

newrelic-agent/src/test/java/com/newrelic/agent/language/SourceLibraryDetectorTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,7 @@ public void setup() throws Exception {
4848
public void testSamplerRun() throws Exception {
4949
sourceLibraryDetector.run();
5050
ArgumentCaptor<StatsWork> captor = ArgumentCaptor.forClass(StatsWork.class);
51-
//As of 7.0.0 we are pulling in kotlin as a transitive dependency of JFR-Daemon
52-
verify(ServiceFactory.getStatsService(), times(3)).doStatsWork(captor.capture(), anyString());
51+
verify(ServiceFactory.getStatsService(), times(2)).doStatsWork(captor.capture(), anyString());
5352

5453
StatsWork statsWork = captor.getValue();
5554

0 commit comments

Comments
 (0)