summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlin Balutoiu <abalutoiu@cloudbasesolutions.com>2017-08-25 15:02:54 +0000
committerAlin Gabriel Serdean <aserdean@ovn.org>2017-09-13 01:28:45 +0300
commit7522dd5ceb1d77970177b127eae555531b5d05b1 (patch)
tree4a527d8fed6afd9c63eec2dc257159d6ab2a91e1
parent7645006d478409049b1e3a16b003b7920325539b (diff)
downloadopenvswitch-7522dd5ceb1d77970177b127eae555531b5d05b1.tar.gz
windows,python: remove dead code in send_wait
Found while looking over the code. Signed-off-by: Alin Balutoiu <abalutoiu@cloudbasesolutions.com> Suggested-by: Alin Gabriel Serdean <aserdean@ovn.org> Acked-by: Alin Gabriel Serdean <aserdean@ovn.org> Acked-by: Anand Kumar <kumaranand@vmware.com> Signed-off-by: Alin Gabriel Serdean <aserdean@ovn.org>
-rw-r--r--python/ovs/stream.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/python/ovs/stream.py b/python/ovs/stream.py
index cb1cdbe8d..c8b96b073 100644
--- a/python/ovs/stream.py
+++ b/python/ovs/stream.py
@@ -492,8 +492,6 @@ class Stream(object):
self.wait(poller, Stream.W_RECV)
def send_wait(self, poller):
- if sys.platform == 'win32':
- poller.fd_wait(self.connect.hEvent, ovs.poller.POLLIN)
self.wait(poller, Stream.W_SEND)
def __del__(self):