Skip to content

Commit 890c297

Browse files
committed
run lint:fix
1 parent c535fcd commit 890c297

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

packages/cubejs-cli/src/command/typegen.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@ const generateQueryTypes = async (apiUrl, { token }) => {
6666
try {
6767
const response = await fetch(
6868
`${apiUrl}/meta`,
69-
{
70-
headers: {
71-
authorization: token,
72-
'Content-type': 'application/json',
73-
}
74-
}
69+
{
70+
headers: {
71+
authorization: token,
72+
'Content-type': 'application/json',
73+
}
74+
}
7575
);
7676
meta = await response.json();
7777
} catch (e: any) {

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-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)