From f70605cebcd47281920a31984066b0b031b94b9b Mon Sep 17 00:00:00 2001 From: Hemant Kumar Date: Thu, 27 Oct 2011 18:58:03 +0530 Subject: [PATCH] [Brightbox]Protocol is no longer required parameter for firewall --- lib/fog/brightbox/models/compute/firewall_rule.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fog/brightbox/models/compute/firewall_rule.rb b/lib/fog/brightbox/models/compute/firewall_rule.rb index b10f5035b..9ac5c0b83 100644 --- a/lib/fog/brightbox/models/compute/firewall_rule.rb +++ b/lib/fog/brightbox/models/compute/firewall_rule.rb @@ -25,7 +25,7 @@ module Fog # Sticking with existing Fog behaviour, save does not update but creates a new resource def save raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if identity - requires :firewall_policy_id, :protocol + requires :firewall_policy_id options = { :firewall_policy => firewall_policy_id, :protocol => protocol,