]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-22119 Increase zip max size for the ElasticSearch update
authorMatteo Mara <matteo.mara@sonarsource.com>
Fri, 10 May 2024 11:39:10 +0000 (13:39 +0200)
committersonartech <sonartech@sonarsource.com>
Fri, 10 May 2024 20:02:46 +0000 (20:02 +0000)
sonar-application/build.gradle

index 53c0ec9590f60f3023cf6202bbe4b51b3c8e7d16..255dfded337660002cbe25cbb8e1c9367c1a637e 100644 (file)
@@ -338,7 +338,7 @@ task zip(type: Zip, dependsOn: [configurations.compileClasspath]) {
 // Check the size of the archive
 zip.doLast {
   def minLength = 340000000
-  def maxLength = 727000000
+  def maxLength = 732000000
 
   def length = archiveFile.get().asFile.length()
   if (length < minLength)