Return-Path: X-Original-To: apmail-incubator-deltacloud-dev-archive@minotaur.apache.org Delivered-To: apmail-incubator-deltacloud-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9011F8906 for ; Mon, 22 Aug 2011 21:03:27 +0000 (UTC) Received: (qmail 51109 invoked by uid 500); 22 Aug 2011 21:03:27 -0000 Delivered-To: apmail-incubator-deltacloud-dev-archive@incubator.apache.org Received: (qmail 51031 invoked by uid 500); 22 Aug 2011 21:03:26 -0000 Mailing-List: contact deltacloud-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: deltacloud-dev@incubator.apache.org Delivered-To: mailing list deltacloud-dev@incubator.apache.org Received: (qmail 51023 invoked by uid 99); 22 Aug 2011 21:03:26 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Aug 2011 21:03:26 +0000 X-ASF-Spam-Status: No, hits=2.5 required=5.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_SOFTFAIL X-Spam-Check-By: apache.org Received-SPF: softfail (athena.apache.org: transitioning domain of mi@mifo.sk does not designate 74.125.82.43 as permitted sender) Received: from [74.125.82.43] (HELO mail-ww0-f43.google.com) (74.125.82.43) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Aug 2011 21:03:19 +0000 Received: by wwe32 with SMTP id 32so5592580wwe.0 for ; Mon, 22 Aug 2011 14:02:57 -0700 (PDT) MIME-Version: 1.0 Received: by 10.216.65.203 with SMTP id f53mr2785503wed.54.1314046977353; Mon, 22 Aug 2011 14:02:57 -0700 (PDT) Received: by 10.216.66.202 with HTTP; Mon, 22 Aug 2011 14:02:57 -0700 (PDT) X-Originating-IP: [85.161.126.242] Received: by 10.216.66.202 with HTTP; Mon, 22 Aug 2011 14:02:57 -0700 (PDT) In-Reply-To: <1314042273-12158-1-git-send-email-sang-min.park@eucalyptus.com> References: <1314042273-12158-1-git-send-email-sang-min.park@eucalyptus.com> Date: Mon, 22 Aug 2011 23:02:57 +0200 Message-ID: Subject: Re: [PATCH] Fix a bug in create_firewall_rule of Eucalyptus driver From: Michal Fojtik To: deltacloud-dev@incubator.apache.org Content-Type: multipart/alternative; boundary=000e0ce0b4ea4da83a04ab1e67f0 --000e0ce0b4ea4da83a04ab1e67f0 Content-Type: text/plain; charset=UTF-8 ACK. On Aug 22, 2011 9:48 PM, wrote: > > From: Sang-Min Park > > --- > .../drivers/eucalyptus/eucalyptus_driver.rb | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/server/lib/deltacloud/drivers/eucalyptus/eucalyptus_driver.rb b/server/lib/deltacloud/drivers/eucalyptus/eucalyptus_driver.rb > index 721defd..d4321ab 100644 > --- a/server/lib/deltacloud/drivers/eucalyptus/eucalyptus_driver.rb > +++ b/server/lib/deltacloud/drivers/eucalyptus/eucalyptus_driver.rb > @@ -137,7 +137,7 @@ module Deltacloud > elsif !(opts['addresses'].nil?) && opts['addresses'].length>0 > ec2 = new_client(credentials) > opts['addresses'].each do |ip| > - ec2.authorize_security_group_IP_ingress(opts['id'], opts['from_port'], opts['to_port'], opts['protocol'], ip) > + ec2.authorize_security_group_IP_ingress(opts['id'], opts['port_from'], opts['port_to'], opts['protocol'], ip) > end > end > end > -- > 1.7.4.1 > --000e0ce0b4ea4da83a04ab1e67f0--