** Description changed:

  [Impact]
+ We cannot decode payloads sent to etcd in Python3. 
+ Which means key, value pairs can not longer be accessed. 
+ 
  Both iter_content and the first line of the loop in the
  etcd3gw watch code were decoding the chunk received.
  
  Thus, etcd3gw's watch is broken in python3.  This commit
  fixes it by only decoding the line once.
  
  [Test Plan]
+ Run unittests, ensure success 
+ 
+ 
  In python2, this works fine:
  ```
  $ python2 -c "print(b'hello_world'.decode().decode('utf-8'))"
  hello_world
  ```
  
  In python3, it raises an AttributeError:
  ```
  $ python3 -c "print(b'hello_world'.decode().decode('utf-8'))"
  Traceback (most recent call last):
    File "<string>", line 1, in <module>
  AttributeError: 'str' object has no attribute 'decode'
  ```
  
  [Regression potential]
+ unit test failure, 
+ Which means key, value pairs can not longer be accessed. 
+ 
  In bionic patch, applying the patch fails the unit tests in Python27.
  This is fixed by fixing the imports to:
  +-from unittest import mock
  ++from mock import patch, MagicMock
  
  [Other Info]
  Link to upstream patch: 
https://opendev.org/openstack/etcd3gw/commit/ed899b34e464862525f76fff2377a2cceeb65af7
  
  python-etcd3gw-0.2.5 (focal)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1965325

Title:
  upstream patch from opendev - double encoding-decoding

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-etcd3gw/+bug/1965325/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to