Skip to content

Commit

Permalink
[Fix #825] Mismatch argument names at update_mapping rake task (#826)
Browse files Browse the repository at this point in the history
  • Loading branch information
programyan authored Dec 10, 2021
1 parent 22b4d6c commit 7d56754
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

### Bugs Fixed

* [#825](https://github.com/toptal/chewy/issues/825): Fix mismatch argument names at update_mapping rake task ([@AgeevAndrew][])

## 7.2.3 (2021-10-29)

### New Features
Expand Down Expand Up @@ -634,6 +636,7 @@
* Initial version

[@0x0badc0de]: https://github.com/0x0badc0de
[@AgeevAndrew]: https://github.com/AgeevAndrew
[@aglushkov]: https://github.com/aglushkov
[@AlexVPopov]: https://github.com/AlexVPopov
[@AndreySavelyev]: https://github.com/AndreySavelyev
Expand Down
2 changes: 1 addition & 1 deletion lib/tasks/chewy.rake
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ namespace :chewy do

desc 'Update mapping of exising index with body hash'
task :update_mapping, %i[index_name] => :environment do |_task, args|
Chewy::RakeHelper.update_mapping(name: args[:name])
Chewy::RakeHelper.update_mapping(name: args[:index_name])
end

namespace :parallel do
Expand Down

0 comments on commit 7d56754

Please sign in to comment.