This is an automated email from the ASF dual-hosted git repository.

martin-g pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-ballista.git


The following commit(s) were added to refs/heads/main by this push:
     new 5b50c1ec7 fix: no executor warning, correct prometheus feature name in 
TUI (#1698)
5b50c1ec7 is described below

commit 5b50c1ec7eef93ee8083aee41caf4a0e325e8170
Author: jgrim <[email protected]>
AuthorDate: Tue May 19 18:57:15 2026 +0200

    fix: no executor warning, correct prometheus feature name in TUI (#1698)
    
    * fix: promote debug to warning for no executor
    
    * fix feature name in TUI
    
    * apply wording suggestion
    
    Co-authored-by: Martin Grigorov <[email protected]>
    
    ---------
    
    Co-authored-by: Martin Grigorov <[email protected]>
---
 ballista-cli/src/tui/ui/main/metrics/mod.rs      | 2 +-
 ballista/scheduler/src/state/executor_manager.rs | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ballista-cli/src/tui/ui/main/metrics/mod.rs 
b/ballista-cli/src/tui/ui/main/metrics/mod.rs
index afb9fb2ee..0f0a0ce16 100644
--- a/ballista-cli/src/tui/ui/main/metrics/mod.rs
+++ b/ballista-cli/src/tui/ui/main/metrics/mod.rs
@@ -89,7 +89,7 @@ pub fn render_metrics(f: &mut Frame, area: Rect, app: &App) {
         render_no_metrics(
             f,
             rects[1],
-            "The scheduler is built with 'prometheus_metric' feature 
disabled.",
+            "The scheduler is built with 'prometheus-metrics' feature 
disabled.",
         );
     }
 }
diff --git a/ballista/scheduler/src/state/executor_manager.rs 
b/ballista/scheduler/src/state/executor_manager.rs
index dfc25eb53..4bc3558d8 100644
--- a/ballista/scheduler/src/state/executor_manager.rs
+++ b/ballista/scheduler/src/state/executor_manager.rs
@@ -114,7 +114,7 @@ impl ExecutorManager {
         }
         let alive_executors = self.get_alive_executors();
         if alive_executors.is_empty() {
-            debug!("There's no alive executors for binding tasks");
+            warn!("There are no alive executors to bind tasks");
             return Ok(vec![]);
         }
         self.cluster_state


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to