Hi,

The config example under pool management on your project page has some syntax errors, particularly this bit:

$conf['background_process_service_groups'] = array(
  'default' =>
    'hosts' => array('ultimate_cron_poorman', 'www1', 'www2'),
  ),
  'cron' =>
    'hosts' => array('ultimate_cron_poorman'),
  ),
  'services' =>
    'hosts' => array('www1', 'www2'),
  ),
);

Should it be this?

$conf['background_process_service_groups'] = array(
  'default' => array(
    'hosts' => array('ultimate_cron_poorman', 'www1', 'www2'),
  ),
  'cron' => array(
    'hosts' => array('ultimate_cron_poorman'),
  ),
  'services' => array(
    'hosts' => array('www1', 'www2'),
  ),
);

Comments

gielfeldt’s picture

Status: Active » Fixed

Ah, yes, of course. Thanks. Also added syntax highlighting while at it.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.