Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dynamic Indexing (for 4.0) #2585

Merged
merged 7 commits into from
Mar 4, 2022
Prev Previous commit
Next Next commit
Reduce the attempts for WP-CLI to one
  • Loading branch information
felipeelia committed Feb 28, 2022
commit 7b383237eff0dc0f21bae645d0a54c43e8ac4f85
2 changes: 1 addition & 1 deletion includes/classes/Command.php
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,7 @@ public function index( $args, $assoc_args ) {

$index_args = [
'method' => 'cli',
'total_attempts' => 3,
'total_attempts' => 1,
'indexables' => $indexables,
'put_mapping' => ! empty( $setup_option ),
'output_method' => [ $this, 'index_output' ],
Expand Down