summaryrefslogtreecommitdiff
path: root/tutorial
diff options
context:
space:
mode:
authorJakub Sitnicki <jkbs@redhat.com>2018-04-18 18:01:14 +0200
committerBen Pfaff <blp@ovn.org>2018-04-18 11:33:35 -0700
commitc7ea0e6b7991c94530636d92afb87d3dfee96056 (patch)
treebcfff30274720638c5817aa1d4cc28346f8a93e3 /tutorial
parentb4273ac902c8db43e99affdfc51684105c8d552c (diff)
downloadopenvswitch-c7ea0e6b7991c94530636d92afb87d3dfee96056.tar.gz
python: Fix a double encoding attempt on an Unicode string
Encoding from 'unicode' to 'str' that has been added to the Stream class in commit 2254074e3067 ("python: fix python3 encode/decode on Windows") conflicts with SSLStream which already contains a quirk for pyopenssl that does the same thing. This results in a double encoding attempt when SSL is used and we crash and burn due to: Traceback (most recent call last): File "../.././test-ovsdb.py", line 874, in <module> main(sys.argv) File "../.././test-ovsdb.py", line 869, in main func(*args) File "../.././test-ovsdb.py", line 655, in do_idl idl_set(idl, command, step) File "../.././test-ovsdb.py", line 526, in idl_set status = txn.commit_block() File "/home/jkbs/src/ovs/python/ovs/db/idl.py", line 1405, in commit_block status = self.commit() File "/home/jkbs/src/ovs/python/ovs/db/idl.py", line 1388, in commit if not self.idl._session.send(msg): File "/home/jkbs/src/ovs/python/ovs/jsonrpc.py", line 540, in send return self.rpc.send(msg) File "/home/jkbs/src/ovs/python/ovs/jsonrpc.py", line 244, in send self.run() File "/home/jkbs/src/ovs/python/ovs/jsonrpc.py", line 203, in run retval = self.stream.send(self.output) File "/home/jkbs/src/ovs/python/ovs/stream.py", line 808, in send return super(SSLStream, self).send(buf) File "/home/jkbs/src/ovs/python/ovs/stream.py", line 391, in send buf = buf.encode('utf-8') UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 83: ordinal not in range(128) Remove the quirk from SSLStream as the base class now does encoding. Reported-by: Marcin Mirecki <mmirecki@redhat.com> Signed-off-by: Jakub Sitnicki <jkbs@redhat.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'tutorial')
0 files changed, 0 insertions, 0 deletions