Commit 4ca0102 1 parent 7331506 commit 4ca0102 Copy full SHA for 4ca0102
File tree 3 files changed +3
-4
lines changed
3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ pub(crate) type SessionBuilder = fn(SessionConfig) -> SessionState;
64
64
pub struct SchedulerServer < T : ' static + AsLogicalPlan , U : ' static + AsExecutionPlan > {
65
65
pub scheduler_name : String ,
66
66
pub start_time : u128 ,
67
- pub ( crate ) state : Arc < SchedulerState < T , U > > ,
67
+ pub state : Arc < SchedulerState < T , U > > ,
68
68
pub ( crate ) query_stage_event_loop : EventLoop < QueryStageSchedulerEvent > ,
69
69
query_stage_scheduler : Arc < QueryStageScheduler < T , U > > ,
70
70
executor_termination_grace_period : u64 ,
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ pub const DEFAULT_EXECUTOR_TIMEOUT_SECONDS: u64 = 180;
89
89
pub const EXPIRE_DEAD_EXECUTOR_INTERVAL_SECS : u64 = 15 ;
90
90
91
91
#[ derive( Clone ) ]
92
- pub ( crate ) struct ExecutorManager {
92
+ pub struct ExecutorManager {
93
93
// executor slot policy
94
94
slots_policy : SlotsPolicy ,
95
95
task_distribution : TaskDistribution ,
Original file line number Diff line number Diff line change @@ -85,8 +85,7 @@ pub fn encode_protobuf<T: Message + Default>(msg: &T) -> Result<Vec<u8>> {
85
85
}
86
86
87
87
#[ derive( Clone ) ]
88
- pub ( super ) struct SchedulerState < T : ' static + AsLogicalPlan , U : ' static + AsExecutionPlan >
89
- {
88
+ pub struct SchedulerState < T : ' static + AsLogicalPlan , U : ' static + AsExecutionPlan > {
90
89
pub executor_manager : ExecutorManager ,
91
90
pub task_manager : TaskManager < T , U > ,
92
91
pub session_manager : SessionManager ,
You can’t perform that action at this time.
0 commit comments