From 99c284d015636dfdefc18534c3a4eef0f7b00572 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Kr=C3=A1l?= Date: Tue, 12 Jan 2016 11:32:32 +0100 Subject: [PATCH] Fixing more typos. Thanks density! ref #333 --- elasticsearch/helpers/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elasticsearch/helpers/__init__.py b/elasticsearch/helpers/__init__.py index 8eb2e761..745865f9 100644 --- a/elasticsearch/helpers/__init__.py +++ b/elasticsearch/helpers/__init__.py @@ -197,7 +197,7 @@ def bulk(client, actions, stats_only=False, **kwargs): return success, failed if stats_only else errors def parallel_bulk(client, actions, thread_count=4, chunk_size=500, - max_chunk_bytes=100 * 1014 * 1024, + max_chunk_bytes=100 * 1024 * 1024, expand_action_callback=expand_action, **kwargs): """ Parallel version of the bulk helper run in multiple threads at once.