From 912471de01a02e2645853a3610e6efd64f8a9d83 Mon Sep 17 00:00:00 2001 From: Newnius Date: Wed, 3 Jun 2020 17:16:19 +0800 Subject: [PATCH] update fair --- src/scheduler_priority.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/scheduler_priority.go b/src/scheduler_priority.go index 5e6b055..09102f7 100644 --- a/src/scheduler_priority.go +++ b/src/scheduler_priority.go @@ -297,6 +297,9 @@ func (scheduler *SchedulerPriority) updateGroup(group Group) bool { } func (scheduler *SchedulerPriority) DebugDump() map[string]interface{} { - res := map[string]interface{}{} + res := map[string]interface{}{ + "queue": scheduler.queue, + "schedulingJobs": scheduler.schedulingJobs, + "history": scheduler.history} return res }