Skip to content

Commit

Permalink
Use --n-slices option correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Apr 24, 2014
1 parent 5d8f95c commit 323a1cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/droonga-catalog-generate
Expand Up @@ -62,8 +62,8 @@ parser.on("--n-replicas=N", Integer,
current_dataset[:n_replicas] = n
end
parser.on("--n-slices=N", Integer,
"Use N slices for a replica.") do |n|
current_dataset[:n_replicas] = n
"Use N slices for each replica.") do |n|
current_dataset[:n_slices] = n
end
parser.on("--plugins=PLUGIN1,PLUGIN2,...", Array,
"Use PLUGINS for the current dataset.") do |plugins|
Expand Down

0 comments on commit 323a1cc

Please sign in to comment.