Skip to content

Commit 334a8a4

Browse files
committed
lint fix
1 parent 528014c commit 334a8a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cubejs-trino-driver/src/TrinoDriver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export class TrinoDriver extends PrestoDriver {
1212
}
1313

1414
public override async testConnection(): Promise<void> {
15-
const { host, port, ssl,basic_auth: basicAuth } = this.config;
15+
const { host, port, ssl, basic_auth: basicAuth } = this.config;
1616
const protocol = ssl ? 'https' : 'http';
1717
const url = `${protocol}://${host}:${port}/v1/info`;
1818
const headers: Record<string, string> = {};

0 commit comments

Comments
 (0)