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 a343f4d commit b3ac7a1Copy full SHA for b3ac7a1
packages/cubejs-databricks-jdbc-driver/src/DatabricksDriver.ts
@@ -27,8 +27,6 @@ import {
27
import { DatabricksQuery } from './DatabricksQuery';
28
import { downloadJDBCDriver } from './installer';
29
30
-const { version } = require('../../package.json');
31
-
32
export type DatabricksDriverConfiguration = JDBCDriverConfiguration &
33
{
34
/**
@@ -210,7 +208,7 @@ export class DatabricksDriver extends JDBCDriver {
210
208
conf?.token ||
211
209
getEnv('databrickToken', { dataSource }) ||
212
'',
213
- UserAgentEntry: `CubeDev+Cube/${version} (Databricks)`,
+ UserAgentEntry: `CubeDev_Cube`,
214
},
215
catalog:
216
conf?.catalog ||
0 commit comments