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 9116ff6 commit d70ef24Copy full SHA for d70ef24
packages/cubejs-trino-driver/src/TrinoDriver.ts
@@ -12,7 +12,7 @@ export class TrinoDriver extends PrestoDriver {
12
}
13
14
public override async testConnection(): Promise<void> {
15
- const { host, port, ssl,basic_auth: basicAuth } = this.config;
+ const { host, port, ssl, basic_auth: basicAuth } = this.config;
16
const protocol = ssl ? 'https' : 'http';
17
const url = `${protocol}://${host}:${port}/v1/info`;
18
const headers: Record<string, string> = {};
0 commit comments