aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAlec Warner <antarus@gentoo.org>2018-01-15 19:42:26 -0500
committerAlec Warner <antarus@gentoo.org>2018-01-15 19:42:26 -0500
commitf6e8485fcb5e2a336f06261246115912b46cbbe4 (patch)
treec442893d0d154f767604aa278245376e987ae450 /lib
parentUpdate elasticsearch queries. (diff)
downloadpackages-5-f6e8485fcb5e2a336f06261246115912b46cbbe4.tar.gz
packages-5-f6e8485fcb5e2a336f06261246115912b46cbbe4.tar.bz2
packages-5-f6e8485fcb5e2a336f06261246115912b46cbbe4.zip
Fix typo that broke compilation.
Diffstat (limited to 'lib')
-rw-r--r--lib/kkuleomi/store/model.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/kkuleomi/store/model.rb b/lib/kkuleomi/store/model.rb
index e610ada..99cb8e4 100644
--- a/lib/kkuleomi/store/model.rb
+++ b/lib/kkuleomi/store/model.rb
@@ -9,7 +9,7 @@ module Kkuleomi::Store::Model
def find_all_by(field, value, opts = {})
search({
size: 10_000,
- query: { bool: { filter: { term: { field => value } } }
+ query: { bool: { filter: { term: { field => value } } } }
}.merge(opts))
end