File tree Expand file tree Collapse file tree 3 files changed +1
-3
lines changed
agent-bootstrap/src/main/java/datadog/trace/bootstrap Expand file tree Collapse file tree 3 files changed +1
-3
lines changed Original file line number Diff line number Diff line change 3737import datadog .trace .api .git .GitInfoProvider ;
3838import datadog .trace .api .profiling .ProfilingEnablement ;
3939import datadog .trace .api .scopemanager .ScopeListener ;
40- import datadog .trace .api .telemetry .LogCollector ;
4140import datadog .trace .bootstrap .benchmark .StaticEventLogger ;
4241import datadog .trace .bootstrap .config .provider .StableConfigSource ;
4342import datadog .trace .bootstrap .instrumentation .api .AgentTracer ;
Original file line number Diff line number Diff line change @@ -340,7 +340,7 @@ tasks.register('checkAgentJarSize').configure {
340340 doLast {
341341 // Arbitrary limit to prevent unintentional increases to the agent jar size
342342 // Raise or lower as required
343- assert shadowJar. archiveFile. get(). getAsFile(). length() <= 35 * 1024 * 1024
343+ assert shadowJar. archiveFile. get(). getAsFile(). length() <= 32 * 1024 * 1024
344344 }
345345
346346 dependsOn " shadowJar"
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ shadowJar {
2222 || it. path. startsWith(" com/datadoghq/profiler" )
2323 rslt |= it. path == " META-INF" || it. path == " META-INF/services" || it. path. startsWith(" META-INF/services/" ) || it. path. startsWith(" META-INF/native-libs/" )
2424 rslt |= (it. path. contains(" ddprof" ) && it. path. endsWith(" .jar" ))
25- println (" Checking ${ it.path} = ${ rslt} " )
2625 return rslt
2726 }
2827}
You can’t perform that action at this time.
0 commit comments