aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatteo Mara <matteo.mara@sonarsource.com>2024-05-10 13:39:10 +0200
committersonartech <sonartech@sonarsource.com>2024-05-10 20:02:46 +0000
commit0dd7f9993bbbdeede5ee9b55f4bc70716a7f52de (patch)
tree46ce7c9b361ddc3f9e34731617cb181dae8363b3
parent6d756542814871d6f2912add2e1725a35027e897 (diff)
downloadsonarqube-0dd7f9993bbbdeede5ee9b55f4bc70716a7f52de.tar.gz
sonarqube-0dd7f9993bbbdeede5ee9b55f4bc70716a7f52de.zip
SONAR-22119 Increase zip max size for the ElasticSearch update
-rw-r--r--sonar-application/build.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle
index 53c0ec9590f..255dfded337 100644
--- a/sonar-application/build.gradle
+++ b/sonar-application/build.gradle
@@ -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)