You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by du...@apache.org on 2019/05/22 21:47:07 UTC

[incubator-openwhisk-package-kafka] branch master updated: Disable spare connections (#342)

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

dubeejw pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-package-kafka.git


The following commit(s) were added to refs/heads/master by this push:
     new f6dfe52  Disable spare connections (#342)
f6dfe52 is described below

commit f6dfe52a9f931a5fc5d63031b62ad3bc3522c95c
Author: James Dubee <jw...@us.ibm.com>
AuthorDate: Wed May 22 17:47:01 2019 -0400

    Disable spare connections (#342)
---
 provider/consumer.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/provider/consumer.py b/provider/consumer.py
index 91d4094..0647450 100644
--- a/provider/consumer.py
+++ b/provider/consumer.py
@@ -296,7 +296,8 @@ class ConsumerProcess (Process):
                         'group.id': self.trigger,
                         'default.topic.config': {'auto.offset.reset': 'latest'},
                         'enable.auto.commit': False,
-                        'api.version.request': True
+                        'api.version.request': True,
+                        'enable.sparse.connections': False
                     }
 
             if self.isMessageHub: