- Update the repository for the Impala JDBC Driver.

- Code cleanup.
This commit is contained in:
Lampros Smyrnaios 2022-01-28 00:59:19 +02:00
parent a01e11eef0
commit 92b11baf93
3 changed files with 3 additions and 9 deletions

View File

@ -11,9 +11,8 @@ sourceCompatibility = '1.8'
repositories {
mavenCentral()
maven {
name "icm"
url "http://esperos.di.uoa.gr/repo"
allowInsecureProtocol = true
name "omtd"
url "https://repo.openminted.eu/content/repositories/releases/"
}
maven {
name "pentaho-repo"

View File

@ -1,4 +0,0 @@
#!/usr/bin/env bash
set -x
cd ../
./gradlew bootrun

View File

@ -100,7 +100,7 @@ public class S3ObjectStoreMinIO {
logger.debug("Bucket \"" + bucketName + "\" already exists.");
} catch (Exception e) {
String errorMsg = "Could not create the bucket \"" + bucketName + "\"!";
logger.error(errorMsg ,e);
logger.error(errorMsg, e);
System.err.println(errorMsg);
System.exit(56);
}
@ -222,5 +222,4 @@ public class S3ObjectStoreMinIO {
return true;
}
}