From 197005acc98d48337dea391a9aef08d0b692a2ef Mon Sep 17 00:00:00 2001 From: Moe Jette <jette1@llnl.gov> Date: Fri, 19 Mar 2010 21:12:45 +0000 Subject: [PATCH] restore default backfill scheduling interval of 10 seconds on non-bluegene systems --- src/plugins/sched/backfill/backfill.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/plugins/sched/backfill/backfill.c b/src/plugins/sched/backfill/backfill.c index 3fe63bd7929..53c8366fe82 100644 --- a/src/plugins/sched/backfill/backfill.c +++ b/src/plugins/sched/backfill/backfill.c @@ -97,7 +97,11 @@ static pthread_cond_t term_cond = PTHREAD_COND_INITIALIZER; static int max_backfill_job_cnt = 50; #ifndef BACKFILL_INTERVAL -# define BACKFILL_INTERVAL 5 +# ifdef HAVE_BG +# define BACKFILL_INTERVAL 5 +# else +# define BACKFILL_INTERVAL 10 +# endif #endif /* Set __DEBUG to get detailed logging for this thread without -- GitLab