From 4b958bee0b78e40fee2ec9dc41d1e03ac931145d Mon Sep 17 00:00:00 2001 From: Jamo Luhrsen Date: Tue, 11 Dec 2018 10:40:51 -0800 Subject: [PATCH] Upgrade decorator package for openstack cli error Seems that some of the packages that we are upgrading by default in every job is not compatible with the older (3.4.0) decorator package. Currently, decorator has version 4.3.0 that will work. Change-Id: I415e1996e34ca09a5e190285388d2f146944878c Signed-off-by: Jamo Luhrsen --- jjb/opendaylight-infra-stack.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/jjb/opendaylight-infra-stack.sh b/jjb/opendaylight-infra-stack.sh index 26e68becd..e1e398ab0 100644 --- a/jjb/opendaylight-infra-stack.sh +++ b/jjb/opendaylight-infra-stack.sh @@ -16,6 +16,9 @@ else cd /builder/openstack-hot || exit 1 fi +# openstack cli is failing with the decorator package +sudo pip install --upgrade --quiet decorator + JOB_SUM=$(echo "$JOB_NAME" | sum | awk '{{ print $1 }}') VM_NAME="$JOB_SUM-$BUILD_NUMBER" -- 2.36.6