mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-12 18:45:20 +02:00
[ticket/12683] Fix create index command
PHPBB3-12683
This commit is contained in:
parent
0a24704b4f
commit
75bdbcf4fe
@ -90,6 +90,8 @@ class create extends command
|
||||
{
|
||||
$io = new SymfonyStyle($input, $output);
|
||||
|
||||
$io->section($this->language->lang('CLI_DESCRIPTION_SEARCHINDEX_CREATE'));
|
||||
|
||||
$search_backend = $input->getArgument('search-backend');
|
||||
|
||||
try
|
||||
@ -105,18 +107,16 @@ class create extends command
|
||||
|
||||
try
|
||||
{
|
||||
$counter = 0;
|
||||
|
||||
$progress = $this->create_progress_bar(1, $io, $output, true);
|
||||
$progress->setMessage('');
|
||||
$progress->start();
|
||||
|
||||
$counter = 0;
|
||||
while (($status = $search->create_index($counter)) !== null)
|
||||
{
|
||||
$progress->setMaxSteps($status['max_post_id']);
|
||||
$progress->setProgress($status['post_counter']);
|
||||
$progress->setMessage(round($status['rows_per_second'], 2) . ' rows/s');
|
||||
|
||||
$progress->advance();
|
||||
}
|
||||
|
||||
$progress->finish();
|
||||
|
@ -391,7 +391,9 @@ abstract class base implements search_backend_interface
|
||||
|
||||
$starttime = microtime(true);
|
||||
$row_count = 0;
|
||||
while (still_on_time() && $post_counter <= $max_post_id)
|
||||
|
||||
$still_on_time = PHP_SAPI === 'cli' ? true : still_on_time();
|
||||
while ($still_on_time && $post_counter <= $max_post_id)
|
||||
{
|
||||
$rows = $this->get_posts_batch_after($post_counter);
|
||||
$ids = $posters = $forum_ids = array();
|
||||
|
@ -16,4 +16,4 @@ namespace phpbb\search\exception;
|
||||
class no_search_backend_found_exception extends search_exception
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -18,4 +18,4 @@ use phpbb\exception\runtime_exception;
|
||||
class search_exception extends runtime_exception
|
||||
{
|
||||
// TODO: Launch this exception from search instead of RuntimeException
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user