You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by si...@apache.org on 2019/04/09 23:19:00 UTC

[pulsar] branch master updated: Add bookkeeper client version constraint (#4013)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new bc6472d  Add bookkeeper client version constraint (#4013)
bc6472d is described below

commit bc6472d43d3fee4f45c20c7b361625e16f6d5bc6
Author: Ali Ahmed <al...@gmail.com>
AuthorDate: Tue Apr 9 16:18:56 2019 -0700

    Add bookkeeper client version constraint (#4013)
    
    We require a certain version of bookkeeper client to operate python function state correctly.
---
 pulsar-client-cpp/python/setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pulsar-client-cpp/python/setup.py b/pulsar-client-cpp/python/setup.py
index 465097a..3abf1d0 100644
--- a/pulsar-client-cpp/python/setup.py
+++ b/pulsar-client-cpp/python/setup.py
@@ -68,7 +68,7 @@ dependencies = [
     'six',
 
     # functions dependencies
-    "apache-bookkeeper-client",
+    "apache-bookkeeper-client>=4.9.1",
     "prometheus_client",
     "ratelimit"
 ]