File tree Expand file tree Collapse file tree 4 files changed +5
-1
lines changed
packages/cubejs-server-core/src/core Expand file tree Collapse file tree 4 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -488,7 +488,8 @@ export class OptsHandler {
488488 jwkUrl : getEnv ( 'jwkUrl' ) ,
489489 claimsNamespace : getEnv ( 'jwtClaimsNamespace' ) ,
490490 ...opts . jwt ,
491- }
491+ } ,
492+ fastReloadEnabled : getEnv ( 'fastReloadEnabled' ) ,
492493 } ;
493494
494495 if ( opts . contextToAppId && ! opts . scheduledRefreshContexts ) {
Original file line number Diff line number Diff line change @@ -145,6 +145,7 @@ const schemaOptions = Joi.object().keys({
145145 // Additional system flags
146146 serverless : Joi . boolean ( ) ,
147147 allowNodeRequire : Joi . boolean ( ) ,
148+ fastReloadEnabled : Joi . boolean ( ) ,
148149} ) ;
149150
150151export default ( options : any ) => {
Original file line number Diff line number Diff line change @@ -539,6 +539,7 @@ export class CubejsServerCore {
539539 context,
540540 allowJsDuplicatePropsInSchema : this . options . allowJsDuplicatePropsInSchema ,
541541 allowNodeRequire : this . options . allowNodeRequire ,
542+ fastReloadEnabled : this . options . fastReloadEnabled ,
542543 } ,
543544 ) ;
544545
Original file line number Diff line number Diff line change @@ -227,6 +227,7 @@ export interface CreateOptions {
227227 serverless ?: boolean ;
228228 allowNodeRequire ?: boolean ;
229229 semanticLayerSync ?: ( context : RequestContext ) => Promise < BiToolSyncConfig [ ] > | BiToolSyncConfig [ ] ;
230+ fastReloadEnabled ?: boolean ;
230231}
231232
232233export interface DriverDecoratedOptions extends CreateOptions {
You can’t perform that action at this time.
0 commit comments