summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElod Illes <elod.illes@est.tech>2020-02-19 11:04:56 +0100
committerElod Illes <elod.illes@est.tech>2020-02-19 15:14:12 +0100
commit9923f27d24ef91f8600f428546df035214f6ec15 (patch)
treea8a00c8477c9e0d404ca2c2a73c7fa76f0bb7b13
parentf56407d7953fe635bb703da543f2807a8d32369f (diff)
downloadceilometer-9923f27d24ef91f8600f428546df035214f6ec15.tar.gz
[stable-only] Cap msgpack
periodic job py27 started to fail with: TypeError: __init__() got an unexpected keyword argument 'encoding' This failure comes with the new version of msgpack (1.0.0). Since ceilometer does not use global upper-constraints.txt from requirements repository, msgpack has to be constrained in requirements.txt Change-Id: I3ca76c80b96d49d4d256110c8fca13f9365add0d (cherry picked from commit f63a65acc0b70699e366f2ffe9f449835020e107)
-rw-r--r--requirements.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/requirements.txt b/requirements.txt
index d730da3f..4e2f8504 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -10,7 +10,7 @@ debtcollector>=1.2.0 # Apache-2.0
jsonpath-rw-ext>=0.1.9 # Apache-2.0
lxml>=2.3 # BSD
monotonic
-msgpack>=0.4.0 # Apache-2.0
+msgpack>=0.4.0,<1.0.0 # Apache-2.0
oslo.concurrency>=3.5.0 # Apache-2.0
oslo.config>=3.22.0 # Apache-2.0
oslo.i18n>=2.1.0 # Apache-2.0