|
|
@ -6022,9 +6022,11 @@ void add_pool_details(struct pool *pool, bool live, char *url, char *user, char |
|
|
|
|
|
|
|
|
|
|
|
/* Test the pool is not idle if we're live running, otherwise
|
|
|
|
/* Test the pool is not idle if we're live running, otherwise
|
|
|
|
* it will be tested separately */ |
|
|
|
* it will be tested separately */ |
|
|
|
if (live && !pool_active(pool, false)) |
|
|
|
if (live && !pool_active(pool, false)) { |
|
|
|
|
|
|
|
gettimeofday(&pool->tv_idle, NULL); |
|
|
|
pool->idle = true; |
|
|
|
pool->idle = true; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CURSES |
|
|
|
#ifdef HAVE_CURSES |
|
|
|
static bool input_pool(bool live) |
|
|
|
static bool input_pool(bool live) |
|
|
|