Skip to content
Snippets Groups Projects
Commit 197005ac authored by Moe Jette's avatar Moe Jette
Browse files

restore default backfill scheduling interval of 10 seconds on non-bluegene systems

parent 579fb409
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment