Skip to content

Commit 32a1801

Browse files
committed
Agent jar size
1 parent 2cba385 commit 32a1801

File tree

1 file changed

+3
-1
lines changed
  • smoke-tests/apps/VerifyAgentJar/src/main/java/com/microsoft/applicationinsights/smoketestapp

1 file changed

+3
-1
lines changed

smoke-tests/apps/VerifyAgentJar/src/main/java/com/microsoft/applicationinsights/smoketestapp/TestController.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ public class TestController {
2222
private static final long ONE_MEGABYTE = 1024 * 1024;
2323

2424
// current jar size 37872243 version 3.4.18
25-
private static final long CURRENT_AGENT_JAR_SIZE = 38968320;
25+
// there was a 4mb bump from 3.6.1 to 3.6.2 due to bytebuddy 1.15.5 becoming a multi-release jar
26+
// which effectively doubled the size of the bytebuddy jar from 4mb to 8mb
27+
private static final long CURRENT_AGENT_JAR_SIZE = 43798057;
2628

2729
@GetMapping("/")
2830
public String root() {

0 commit comments

Comments
 (0)