nowhere to set read_timeout 32/9332/4
authordongjuan <dong.juan1@zte.com.cn>
Thu, 9 Nov 2017 06:46:36 +0000 (14:46 +0800)
committerOle Trøan <otroan@employees.org>
Mon, 20 Nov 2017 08:51:03 +0000 (08:51 +0000)
Change-Id: I8a16f2ba884451ca8028adb91383d57fdf1d9d50
Signed-off-by: dongjuan <dong.juan1@zte.com.cn>
src/vpp-api/python/vpp_papi.py

index e7e1707..2f4773a 100644 (file)
@@ -112,7 +112,7 @@ class VPP():
     these messages in a background thread.
     """
     def __init__(self, apifiles=None, testmode=False, async_thread=True,
-                 logger=logging.getLogger('vpp_papi'), loglevel='debug'):
+                 logger=logging.getLogger('vpp_papi'), loglevel='debug', read_timeout=0):
         """Create a VPP API object.
 
         apifiles is a list of files containing API
@@ -134,7 +134,7 @@ class VPP():
         self.apifiles = []
         self.event_callback = None
         self.message_queue = queue.Queue()
-        self.read_timeout = 0
+        self.read_timeout = read_timeout
         self.vpp_api = vpp_api
         if async_thread:
             self.event_thread = threading.Thread(