From 818851f79060d532054e2f90848d40a70fce4084 Mon Sep 17 00:00:00 2001 From: Jens Harbott Date: Thu, 21 Mar 2019 10:29:26 +0000 Subject: [PATCH] Soften the rabbitmq version pin With version 5.7.4 the rabbitmq cookbook should be working for us again. However, we also learned that with the upcoming 6.x version of the cookbook only versions >= 3.7.x of rabbitmq will be supported, which isn't available as distro version at least for Ubuntu LTS releases yet. So we change this pin into a soft match, allowing for updates within the 5.x stable branch, but blocking 6.x. Change-Id: Id647f10fd5d4b69b441c4f8de8c325ec0032d9ea --- metadata.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/metadata.rb b/metadata.rb index 8dece9d..87277c7 100644 --- a/metadata.rb +++ b/metadata.rb @@ -13,8 +13,7 @@ recipe 'rabbitmq-server', 'Installs and configures RabbitMQ and is called via th end depends 'openstack-common', '>= 18.0.0' -# Note(frickler): Workaround for https://github.com/rabbitmq/chef-cookbook/issues/508 -depends 'rabbitmq', '5.7.0' +depends 'rabbitmq', '~> 5.7' issues_url 'https://launchpad.net/openstack-chef' if respond_to?(:issues_url) source_url 'https://github.com/openstack/cookbook-openstack-ops-messaging' if respond_to?(:source_url)