From 347e1435c8a36ab18da1c0bd8588db2110b4fe4c Mon Sep 17 00:00:00 2001 From: Hongbin Lu Date: Tue, 28 Mar 2017 14:02:11 -0500 Subject: [PATCH] Add release note for fixing bug 1664877 Change-Id: If9d378d3dc0c72c1b6fa8821ee3642f50028f354 --- .../notes/bug-1664877-c462bfad92ce03e5.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 releasenotes/notes/bug-1664877-c462bfad92ce03e5.yaml diff --git a/releasenotes/notes/bug-1664877-c462bfad92ce03e5.yaml b/releasenotes/notes/bug-1664877-c462bfad92ce03e5.yaml new file mode 100644 index 0000000..6d1e05d --- /dev/null +++ b/releasenotes/notes/bug-1664877-c462bfad92ce03e5.yaml @@ -0,0 +1,13 @@ +--- +fixes: + - | + If using python3.5, a TypeError will raise if server returns a 4xx + response. Below is the error message: + + TypeError: unorderable types: int() > NoneType() + + This error occurred because python-manilaclient tried to compare + an integer with None. This is not a valid comparison starting + from python3.5. + + See bug #1664877 for more details.