- Update the repository for the Impala JDBC Driver.
- Code cleanup.
This commit is contained in:
parent
a01e11eef0
commit
92b11baf93
|
@ -11,9 +11,8 @@ sourceCompatibility = '1.8'
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
maven {
|
maven {
|
||||||
name "icm"
|
name "omtd"
|
||||||
url "http://esperos.di.uoa.gr/repo"
|
url "https://repo.openminted.eu/content/repositories/releases/"
|
||||||
allowInsecureProtocol = true
|
|
||||||
}
|
}
|
||||||
maven {
|
maven {
|
||||||
name "pentaho-repo"
|
name "pentaho-repo"
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
set -x
|
|
||||||
cd ../
|
|
||||||
./gradlew bootrun
|
|
|
@ -100,7 +100,7 @@ public class S3ObjectStoreMinIO {
|
||||||
logger.debug("Bucket \"" + bucketName + "\" already exists.");
|
logger.debug("Bucket \"" + bucketName + "\" already exists.");
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
String errorMsg = "Could not create the bucket \"" + bucketName + "\"!";
|
String errorMsg = "Could not create the bucket \"" + bucketName + "\"!";
|
||||||
logger.error(errorMsg ,e);
|
logger.error(errorMsg, e);
|
||||||
System.err.println(errorMsg);
|
System.err.println(errorMsg);
|
||||||
System.exit(56);
|
System.exit(56);
|
||||||
}
|
}
|
||||||
|
@ -222,5 +222,4 @@ public class S3ObjectStoreMinIO {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue