From 1ecd92e0c47e19698836084733d8d8563d0831f1 Mon Sep 17 00:00:00 2001 From: yatinkarel Date: Tue, 6 May 2025 18:20:14 +0530 Subject: [PATCH] Pin dogpile.cache<1.4.0 With dogpile.cache-1.4.0 browbeat scenario runs fails as described in the below bug, work around it by pinning to working version. Closes-Bug: #2110045 Change-Id: I568d664971296bf1065e78125b378ffd7a69d654 --- ansible/install/roles/rally/tasks/main.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ansible/install/roles/rally/tasks/main.yml b/ansible/install/roles/rally/tasks/main.yml index 57a4f4501..0dc4ffb55 100644 --- a/ansible/install/roles/rally/tasks/main.yml +++ b/ansible/install/roles/rally/tasks/main.yml @@ -67,6 +67,13 @@ name: 'python-novaclient<18.3.0' virtualenv: "{{ rally_venv }}" +# Till browbeat code is compatible with dogpile.cache-1.4.0 +# https://bugs.launchpad.net/openstack-browbeat/+bug/2110045 +- name: Ensure dogpile.cache<1.4.0 + pip: + name: 'dogpile.cache<1.4.0' + virtualenv: "{{ rally_venv }}" + - name: Create rally configuration directory file: path: "{{ rally_venv }}/etc/rally"