File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
packages/cubejs-backend-native Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ class Configuration:
6262 logger : Callable
6363 context_to_app_id : Union [str , Callable [[RequestContext ], str ]]
6464 context_to_orchestrator_id : Union [str , Callable [[RequestContext ], str ]]
65+ context_to_cube_store_router_id : Union [str , Callable [[RequestContext ], str ]]
6566 driver_factory : Callable [[RequestContext ], Dict ]
6667 external_driver_factory : Callable [[RequestContext ], Dict ]
6768 db_type : Union [str , Callable [[RequestContext ], str ]]
@@ -108,6 +109,7 @@ def __init__(self):
108109 self .logger = None
109110 self .context_to_app_id = None
110111 self .context_to_orchestrator_id = None
112+ self .context_to_cube_store_router_id = None
111113 self .driver_factory = None
112114 self .external_driver_factory = None
113115 self .db_type = None
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ impl CubeConfigPy {
5050 "context_to_api_scopes" ,
5151 "context_to_app_id" ,
5252 "context_to_orchestrator_id" ,
53+ "context_to_cube_store_router_id" ,
5354 "context_to_roles" ,
5455 "db_type" ,
5556 "driver_factory" ,
You can’t perform that action at this time.
0 commit comments