Skip to content

Commit 1f553d7

Browse files
Raise agent JAR size limit from 32 MB to 33 MB
1 parent ea98882 commit 1f553d7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dd-java-agent/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ tasks.register('checkAgentJarSize') {
467467
doLast {
468468
// Arbitrary limit to prevent unintentional increases to the agent jar size
469469
// Raise or lower as required
470-
assert tasks.named("shadowJar", ShadowJar).get().archiveFile.get().getAsFile().length() <= 32 * 1024 * 1024
470+
assert tasks.named("shadowJar", ShadowJar).get().archiveFile.get().getAsFile().length() <= 33 * 1024 * 1024
471471
}
472472

473473
dependsOn "shadowJar"

0 commit comments

Comments
 (0)