We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca63c63 commit d1bc137Copy full SHA for d1bc137
packages/cubejs-jdbc-driver/src/JDBCDriver.ts
@@ -37,9 +37,12 @@ let mvnPromise: Promise<void> | null = null;
37
const initMvn = (customClassPath: any) => {
38
if (!mvnPromise) {
39
mvnPromise = new Promise((resolve, reject) => {
40
+ console.log('new mvnPromise');
41
+
42
const options = {
43
packageJsonPath: `${path.join(__dirname, '../..')}/package.json`,
44
};
45
+ console.log('mvnPromise options', options);
46
mvn(options, (err: any, mvnResults: any) => {
47
if (err && !err.message.includes('Could not find java property')) {
48
reject(err);
0 commit comments