From 100260a70466a0e46033d724c02dd4b18f03290d Mon Sep 17 00:00:00 2001 From: jiehua jin Date: Thu, 8 Aug 2013 08:12:21 +0000 Subject: [PATCH] modified the depends openstack-metering version Currently, the latest openstack-common cookbook version is 0.4.3 The depends "openstack-common" version in the metadata.rb is " ~> 0.3.0". After uploading the openstack-common, I upload the "openstack-metering" cookbook. It output the dependency error. Modified the depends "openstack-common" version in metadata.rb could fix it. Fixes: bug #1210033 Implements: modified the depends "openstack-common" version number Change-Id: I935f4659c5e0aaee632b114c90a60a7613b22e7e --- metadata.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metadata.rb b/metadata.rb index 971f35a..fd0f2ac 100644 --- a/metadata.rb +++ b/metadata.rb @@ -16,4 +16,4 @@ recipe "openstack-metering::common", "Common metering configuration." supports os end -depends "openstack-common", "~> 0.3.0" +depends "openstack-common", "~> 0.4.0"