You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kibble.apache.org by hu...@apache.org on 2019/06/10 16:35:05 UTC

[kibble] branch master updated: source_include argument renamed in 7.x

This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kibble.git


The following commit(s) were added to refs/heads/master by this push:
     new b7df4a6  source_include argument renamed in 7.x
b7df4a6 is described below

commit b7df4a656d90170ba446a3ebd9854882c98948df
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Mon Jun 10 18:35:00 2019 +0200

    source_include argument renamed in 7.x
---
 api/plugins/database.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/api/plugins/database.py b/api/plugins/database.py
index 6484ab4..0401ae1 100644
--- a/api/plugins/database.py
+++ b/api/plugins/database.py
@@ -92,7 +92,7 @@ class KibbleESWrapperSeven(object):
             index = index+'_'+doc_type,
             size = size,
             scroll = scroll,
-            _source_include = _source_include,
+            _source_includes = _source_include,
             body = body
             )
     def count(self, index, doc_type = '*', body = None):