Skip to content

Commit

Permalink
fix tsc type warn
Browse files Browse the repository at this point in the history
  • Loading branch information
KSDaemon committed Feb 7, 2025
1 parent 67a4b54 commit 96f68bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cubejs-druid-driver/src/DruidClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export class DruidClient {
});

if (cancelled) {
await this.cancel(response.headers['x-druid-sql-query-id']);
await this.cancel(response.headers['x-druid-sql-query-id'] || '');

throw new Error('Query cancelled');
}
Expand Down

0 comments on commit 96f68bc

Please sign in to comment.