Skip to content

Commit 90bb390

Browse files
committed
fix lint warn
1 parent a23d964 commit 90bb390

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

packages/cubejs-backend-native/js/ResultWrapper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export interface DataResult {
1212
}
1313

1414
class BaseWrapper {
15-
public readonly isWrapper: boolean = true;
15+
public readonly isWrapper: boolean = true;
1616
}
1717

1818
export class ResultWrapper extends BaseWrapper implements DataResult {

packages/cubejs-clickhouse-driver/src/ClickHouseDriver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ export class ClickHouseDriver extends BaseDriver implements DriverInterface {
173173
},
174174
};
175175

176-
const maxPoolSize = config.maxPoolSize ?? getEnv("dbMaxPoolSize", { dataSource }) ?? 8;
176+
const maxPoolSize = config.maxPoolSize ?? getEnv('dbMaxPoolSize', { dataSource }) ?? 8;
177177

178178
this.client = this.createClient(maxPoolSize);
179179
}

packages/cubejs-server/src/websocket-server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export class WebSocketServer {
4343
// it again - it's too expensive, instead we serialize the rest of the message and then
4444
// inject query result json into message.
4545
const resMsg = new TextDecoder().decode(message.message);
46-
message.message = "~XXXXX~";
46+
message.message = '~XXXXX~';
4747
messageStr = JSON.stringify(message);
4848
messageStr = messageStr.replace('"~XXXXX~"', resMsg);
4949
} else {

packages/cubejs-testing-shared/src/db-container-runners/ksql.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export class KsqlDBRunner extends DbRunnerAbstract {
5959
method: 'POST',
6060
headers: { Accept: 'application/json' },
6161
body: JSON.stringify({
62-
ksql: "CREATE OR REPLACE STREAM REQUESTS (ID STRING, TIMESTAMP TIMESTAMP, TENANT_ID INTEGER, REQUEST_ID STRING) WITH (KAFKA_TOPIC = 'REQUESTS', KEY_FORMAT = 'JSON', PARTITIONS = 1, REPLICAS = 1, VALUE_FORMAT = 'JSON');",
62+
ksql: 'CREATE OR REPLACE STREAM REQUESTS (ID STRING, TIMESTAMP TIMESTAMP, TENANT_ID INTEGER, REQUEST_ID STRING) WITH (KAFKA_TOPIC = \'REQUESTS\', KEY_FORMAT = \'JSON\', PARTITIONS = 1, REPLICAS = 1, VALUE_FORMAT = \'JSON\');',
6363
streamsProperties: {}
6464
})
6565
});

0 commit comments

Comments
 (0)