Compare commits

..
1 Commits
Author SHA1 Message Date
Harshita Sharma e18d554dd5 Fix: Provide specific error for invalid SSL certificate 2025-08-03 08:43:07 +00:00
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ import java.util.Optional
plugins {
id 'java-library'
id "org.flywaydb.flyway" version "9.22.3"
id "org.flywaydb.flyway" version "11.0.1"
id 'maven-publish'
}
@@ -120,7 +120,7 @@ public class SecurityAction extends ConsoleApiAction {
}
}
} catch (InsecureCertificateException e) {
setFailedResponse("Invalid certificate in parameter", SC_BAD_REQUEST);
setFailedResponse(e.getMessage(), SC_BAD_REQUEST);
return;
}
+1 -1
View File
@@ -23,7 +23,7 @@ buildscript {
}
plugins {
id "org.flywaydb.flyway" version "9.22.3"
id "org.flywaydb.flyway" version "11.0.1"
id 'maven-publish'
}
+1 -1
View File
@@ -1,4 +1,4 @@
f# This file defines properties used by the gradle build. It must be kept in
# This file defines properties used by the gradle build. It must be kept in
# sync with config/nom_build.py.
#
# To regenerate, run ./nom_build --generate-gradle-properties
+1 -1
View File
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME