Skip to content

Commit

Permalink
fix(firebolt-driver): use default api endpoint if not provided (#8767)
Browse files Browse the repository at this point in the history
  • Loading branch information
johancube authored Oct 2, 2024
1 parent 6a70e07 commit 779eacd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/cubejs-firebolt-driver/src/FireboltDriver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ export class FireboltDriver extends BaseDriver implements DriverInterface {

this.config = {
readOnly: true,
apiEndpoint: getEnv('fireboltApiEndpoint', { dataSource }),
apiEndpoint:
getEnv('fireboltApiEndpoint', { dataSource }) || 'api.app.firebolt.io',
...config,
connection: {
auth,
Expand Down

0 comments on commit 779eacd

Please sign in to comment.