diff options
author | Takeshi Umeda <noel.yoshiba@gmail.com> | 2021-11-26 16:30:02 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-26 08:30:02 +0100 |
commit | 06631fdc53d6c464aa9db4e31d35f1fe354bcc95 (patch) | |
tree | 46f53e4114d98b71a62479a63fa709dcbb51ac28 /lib | |
parent | 53aca8aecf33ca47825da8b2d10ecff089df5c64 (diff) |
Fix ElasticSearch to Elasticsearch (#17050)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/mastodon/search_cli.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mastodon/search_cli.rb b/lib/mastodon/search_cli.rb index e36af24f4..6ad9d7b6a 100644 --- a/lib/mastodon/search_cli.rb +++ b/lib/mastodon/search_cli.rb @@ -19,9 +19,9 @@ module Mastodon option :concurrency, type: :numeric, default: 2, aliases: [:c], desc: 'Workload will be split between this number of threads' option :batch_size, type: :numeric, default: 1_000, aliases: [:b], desc: 'Number of records in each batch' option :only, type: :array, enum: %w(accounts tags statuses), desc: 'Only process these indices' - desc 'deploy', 'Create or upgrade ElasticSearch indices and populate them' + desc 'deploy', 'Create or upgrade Elasticsearch indices and populate them' long_desc <<~LONG_DESC - If ElasticSearch is empty, this command will create the necessary indices + If Elasticsearch is empty, this command will create the necessary indices and then import data from the database into those indices. This command will also upgrade indices if the underlying schema has been |