Skip to content

Commit 779eacd

Browse files
authored
fix(firebolt-driver): use default api endpoint if not provided (#8767)
1 parent 6a70e07 commit 779eacd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/cubejs-firebolt-driver/src/FireboltDriver.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ export class FireboltDriver extends BaseDriver implements DriverInterface {
9090

9191
this.config = {
9292
readOnly: true,
93-
apiEndpoint: getEnv('fireboltApiEndpoint', { dataSource }),
93+
apiEndpoint:
94+
getEnv('fireboltApiEndpoint', { dataSource }) || 'api.app.firebolt.io',
9495
...config,
9596
connection: {
9697
auth,

0 commit comments

Comments
 (0)