Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kyotoYaho committed Jul 26, 2022
1 parent 1075541 commit 784b04f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ballista/rust/scheduler/src/planner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ impl DistributedPlanner {
new_plan,
None,
)?);
info!("finished planning");
Ok(stages)
}

Expand Down
2 changes: 1 addition & 1 deletion ballista/rust/scheduler/src/scheduler_server/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ impl<T: 'static + AsLogicalPlan, U: 'static + AsExecutionPlan> SchedulerServer<T
.unwrap_or_else(|| addr),
port: executor_metadata.port as u16,
grpc_port: executor_metadata.grpc_port as u16,
specification: executor_metadata.specification.unwrap().clone().into(),
specification: executor_metadata.specification.unwrap().into(),
};
// save the metadata to cache
self.state.save_executor_metadata(metadata.clone()).await?;
Expand Down

0 comments on commit 784b04f

Please sign in to comment.