File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages/cubejs-server-core Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ export class CubejsServerCore {
126126
127127 protected readonly orchestratorStorage : OrchestratorStorage = new OrchestratorStorage ( ) ;
128128
129- protected repositoryFactory : ( ( context : RequestContext ) => SchemaFileRepository ) | ( ( ) => FileRepository ) ;
129+ protected repositoryFactory : ( ( _context : RequestContext ) => SchemaFileRepository ) | ( ( ) => FileRepository ) ;
130130
131131 protected contextToDbType : DbTypeAsyncFn ;
132132
@@ -162,7 +162,7 @@ export class CubejsServerCore {
162162
163163 protected apiGatewayInstance : ApiGateway | null = null ;
164164
165- public readonly event : ( name : string , props ?: object ) => Promise < void > ;
165+ public readonly event : ( _name : string , _props ?: object ) => Promise < void > ;
166166
167167 public projectFingerprint : string | null = null ;
168168
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ class CubejsServerCoreOpen extends CubejsServerCore {
2626
2727 public pubScheduledRefreshTimeZones ( ctx : any ) {
2828 return this . scheduledRefreshTimeZones ( ctx ) ;
29- } ;
29+ }
3030}
3131
3232const repositoryWithoutPreAggregations : SchemaFileRepository = {
You can’t perform that action at this time.
0 commit comments