From: dongjuan Date: Thu, 9 Nov 2017 06:46:36 +0000 (+0800) Subject: nowhere to set read_timeout X-Git-Tag: v18.04-rc0~213 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F32%2F9332%2F4;p=vpp.git nowhere to set read_timeout Change-Id: I8a16f2ba884451ca8028adb91383d57fdf1d9d50 Signed-off-by: dongjuan --- diff --git a/src/vpp-api/python/vpp_papi.py b/src/vpp-api/python/vpp_papi.py index e7e1707c435..2f4773ad8a5 100644 --- a/src/vpp-api/python/vpp_papi.py +++ b/src/vpp-api/python/vpp_papi.py @@ -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(