From 808f8cf2274cddae574193b31f105ec389ad7124 Mon Sep 17 00:00:00 2001
From: Morris Jette <jette@schedmd.com>
Date: Mon, 26 Sep 2016 09:06:25 -0600
Subject: [PATCH] Change error message to info("warning: .."

The problem reported is just a configuration warning and not an
 error. Also change the test from ">=" to ">".
bug 3086
---
 src/plugins/sched/backfill/backfill.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/plugins/sched/backfill/backfill.c b/src/plugins/sched/backfill/backfill.c
index 3b8a1c6d414..9279c6ae933 100644
--- a/src/plugins/sched/backfill/backfill.c
+++ b/src/plugins/sched/backfill/backfill.c
@@ -603,9 +603,9 @@ static void _load_config(void)
 		max_backfill_job_per_user = 0;
 	}
 	if ((max_backfill_job_per_user != 0) &&
-	    (max_backfill_job_per_user >= max_backfill_job_cnt)) {
-		error("bf_max_job_user >= bf_max_job_test (%u >= %u)",
-		      max_backfill_job_per_user, max_backfill_job_cnt);
+	    (max_backfill_job_per_user > max_backfill_job_cnt)) {
+		info("warning: bf_max_job_user > bf_max_job_test (%u > %u)",
+		     max_backfill_job_per_user, max_backfill_job_cnt);
 	}
 
 	bf_min_age_reserve = 0;
@@ -1692,11 +1692,11 @@ next_task:
 				      max_backfill_job_per_part,
 				      max_backfill_job_cnt);
 			} else if ((max_backfill_job_per_user != 0) &&
-				   (max_backfill_job_per_user >=
+				   (max_backfill_job_per_user >
 				    max_backfill_job_cnt)) {
-				error("bf_max_job_user >= bf_max_job_test (%u >= %u)",
-				      max_backfill_job_per_user,
-				      max_backfill_job_cnt);
+				info("warning: bf_max_job_user > bf_max_job_test (%u > %u)",
+				     max_backfill_job_per_user,
+				     max_backfill_job_cnt);
 			}
 			break;
 		}
-- 
GitLab