diff options
author | Silvio <silvio@devlet.com.br> | 2010-11-18 16:18:12 -0200 |
---|---|---|
committer | Silvio <silvio@devlet.com.br> | 2010-11-18 16:18:12 -0200 |
commit | 978b0ed546aebbe04cbe364dd050eaec18da5512 (patch) | |
tree | dd0017c13ca336b35bfd0782e19100d2ac045673 /lib/task/isisBatchTask.class.php | |
parent | f58eb1685cc0b70e3b09e85c7dfa1d458dfccfc3 (diff) | |
download | sf_isis_importer_plugin-978b0ed546aebbe04cbe364dd050eaec18da5512.tar.gz sf_isis_importer_plugin-978b0ed546aebbe04cbe364dd050eaec18da5512.tar.bz2 |
Enhancing isis:batch
Diffstat (limited to 'lib/task/isisBatchTask.class.php')
-rw-r--r-- | lib/task/isisBatchTask.class.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/task/isisBatchTask.class.php b/lib/task/isisBatchTask.class.php index 95be44c..02cb526 100644 --- a/lib/task/isisBatchTask.class.php +++ b/lib/task/isisBatchTask.class.php @@ -27,7 +27,7 @@ EOF; protected function execute($arguments = array(), $options = array()) { - // initialize the database connection + // Initialize the database connection. $databaseManager = new sfDatabaseManager($this->configuration); $connection = $databaseManager->getDatabase($options['connection'])->getConnection(); @@ -46,15 +46,15 @@ EOF; foreach ($databases as $database) { - $rows = (isset($arguments['rows'])) ? $argument['rows'] : 20; - $max = 1000; // TODO + $rows = (isset($arguments['rows'])) ? $argument['rows'] : 100; + $max = $isis->info($this, 'task', $database); for ($offset = 0; $offset <= $max; $offset = $offset + $rows) { $pid = pcntl_fork(); if ($pid == -1) { - die('Could not fork'); + die('Could not fork.'); } else if ($pid) { |