This is an automated email from the ASF dual-hosted git repository.
dheres pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-ballista.git
The following commit(s) were added to refs/heads/main by this push:
new fe6e2f59 Make task_manager pub (#698)
fe6e2f59 is described below
commit fe6e2f59f1549d34d17126a38a547edbfa58e2ba
Author: Daniël Heres <[email protected]>
AuthorDate: Thu Mar 2 21:11:02 2023 +0100
Make task_manager pub (#698)
Co-authored-by: Daniël Heres <[email protected]>
---
ballista/scheduler/src/state/mod.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ballista/scheduler/src/state/mod.rs
b/ballista/scheduler/src/state/mod.rs
index 0ecba0d7..d38415bd 100644
--- a/ballista/scheduler/src/state/mod.rs
+++ b/ballista/scheduler/src/state/mod.rs
@@ -48,7 +48,7 @@ pub mod execution_graph_dot;
pub mod executor_manager;
pub mod session_manager;
pub mod session_registry;
-pub(crate) mod task_manager;
+pub mod task_manager;
pub fn decode_protobuf<T: Message + Default>(bytes: &[u8]) -> Result<T> {
T::decode(bytes).map_err(|e| {