diff options
author | Matteo Mara <matteo.mara@sonarsource.com> | 2024-05-10 13:39:10 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2024-05-10 20:02:46 +0000 |
commit | 0dd7f9993bbbdeede5ee9b55f4bc70716a7f52de (patch) | |
tree | 46ce7c9b361ddc3f9e34731617cb181dae8363b3 | |
parent | 6d756542814871d6f2912add2e1725a35027e897 (diff) | |
download | sonarqube-0dd7f9993bbbdeede5ee9b55f4bc70716a7f52de.tar.gz sonarqube-0dd7f9993bbbdeede5ee9b55f4bc70716a7f52de.zip |
SONAR-22119 Increase zip max size for the ElasticSearch update
-rw-r--r-- | sonar-application/build.gradle | 2 |
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) |