Browse Source

SONAR-22119 Increase zip max size for the ElasticSearch update

pull/3361/head
Matteo Mara 3 weeks ago
parent
commit
0dd7f9993b
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      sonar-application/build.gradle

+ 1
- 1
sonar-application/build.gradle View 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)

Loading…
Cancel
Save