Correct function name to repair infinite recursion 60/760/1
authorLott, Christopher (cl778h) <cl778h@att.com>
Tue, 20 Aug 2019 18:35:35 +0000 (14:35 -0400)
committerLott, Christopher (cl778h) <cl778h@att.com>
Tue, 20 Aug 2019 18:35:35 +0000 (14:35 -0400)
Signed-off-by: Lott, Christopher (cl778h) <cl778h@att.com>
Change-Id: Ic92b2943ba953d2d624b42485f55ba3e41aadb51

src/bindings/rmr-python/docs/Changelog.rst
src/bindings/rmr-python/rmr/rmr.py
src/bindings/rmr-python/setup.py

index 1a109f5..894ce3d 100644 (file)
@@ -7,6 +7,13 @@ The format is based on `Keep a Changelog <http://keepachangelog.com/>`__
 and this project adheres to `Semantic
 Versioning <http://semver.org/>`__.
 
+[0.10.8] - 8/20/2019
+--------------------
+
+::
+   * Fix invocation of _rmr_alloc function
+
+
 [0.10.7] - 8/14/2019
 --------------------
 
index 984ac31..9d21b88 100644 (file)
@@ -210,7 +210,7 @@ def rmr_alloc_msg(vctx, size):
     Refer to the rmr C documentation for rmr_alloc_msg
     extern rmr_mbuf_t* rmr_alloc_msg(void* vctx, int size)
     """
-    return rmr_alloc_msg(vctx, size)
+    return _rmr_alloc_msg(vctx, size)
 
 
 _rmr_payload_size = rmr_c_lib.rmr_payload_size
index 88d1eea..06f4c14 100644 (file)
@@ -32,7 +32,7 @@ def _long_descr():
 
 setup(
     name="rmr",
-    version="0.10.7",
+    version="0.10.8",
     packages=find_packages(),
     author="Tommy Carpenter, E. Scott Daniels",
     description="Python wrapper for RIC RMR",