diff options
author | Jacek <jacek.poreda@sonarsource.com> | 2021-06-14 13:16:36 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-06-16 20:03:04 +0000 |
commit | 7ec7c0ec4db6b200d31c7be6123d6d57887e4209 (patch) | |
tree | ec22ae4d4fcada925a94880ca6efff870ee4c31c /sonar-application/build.gradle | |
parent | 0d0918a8f5ff5e94f012ebf6dd345a12614ad888 (diff) | |
download | sonarqube-7ec7c0ec4db6b200d31c7be6123d6d57887e4209.tar.gz sonarqube-7ec7c0ec4db6b200d31c7be6123d6d57887e4209.zip |
SONAR-14792 Drop not existing tables from init schema
Diffstat (limited to 'sonar-application/build.gradle')
-rw-r--r-- | sonar-application/build.gradle | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle index 0755a33a577..59d88509fa0 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -220,8 +220,8 @@ zip.doFirst { } // Check the size of the archive zip.doLast { - def minLength = 260000000 - def maxLength = 290000000 + def minLength = 269000000 + def maxLength = 289000000 def length = archiveFile.get().asFile.length() if (length < minLength) |