Return-Path: X-Original-To: apmail-deltacloud-commits-archive@www.apache.org Delivered-To: apmail-deltacloud-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9616AE43D for ; Fri, 8 Feb 2013 17:22:58 +0000 (UTC) Received: (qmail 41073 invoked by uid 500); 8 Feb 2013 17:22:58 -0000 Delivered-To: apmail-deltacloud-commits-archive@deltacloud.apache.org Received: (qmail 41040 invoked by uid 500); 8 Feb 2013 17:22:58 -0000 Mailing-List: contact commits-help@deltacloud.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@deltacloud.apache.org Delivered-To: mailing list commits@deltacloud.apache.org Received: (qmail 41015 invoked by uid 99); 8 Feb 2013 17:22:58 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Feb 2013 17:22:58 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 094383A695; Fri, 8 Feb 2013 17:22:58 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: marios@apache.org To: commits@deltacloud.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [2/3] git commit: Fix issue with arubacloud driver - savon client configuration method changed Message-Id: <20130208172258.094383A695@tyr.zones.apache.org> Date: Fri, 8 Feb 2013 17:22:58 +0000 (UTC) Fix issue with arubacloud driver - savon client configuration method changed https://issues.apache.org/jira/browse/DTACLOUD-444 Project: http://git-wip-us.apache.org/repos/asf/deltacloud/repo Commit: http://git-wip-us.apache.org/repos/asf/deltacloud/commit/b550061a Tree: http://git-wip-us.apache.org/repos/asf/deltacloud/tree/b550061a Diff: http://git-wip-us.apache.org/repos/asf/deltacloud/diff/b550061a Branch: refs/heads/master Commit: b550061af10ed48d47e72f48af821ca5033cf2db Parents: cd746e6 Author: marios Authored: Fri Feb 8 18:21:55 2013 +0200 Committer: marios Committed: Fri Feb 8 18:21:55 2013 +0200 ---------------------------------------------------------------------- .../drivers/arubacloud/arubacloud_driver.rb | 5 +---- 1 files changed, 1 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/deltacloud/blob/b550061a/server/lib/deltacloud/drivers/arubacloud/arubacloud_driver.rb ---------------------------------------------------------------------- diff --git a/server/lib/deltacloud/drivers/arubacloud/arubacloud_driver.rb b/server/lib/deltacloud/drivers/arubacloud/arubacloud_driver.rb index 0fd8bee..4a24760 100644 --- a/server/lib/deltacloud/drivers/arubacloud/arubacloud_driver.rb +++ b/server/lib/deltacloud/drivers/arubacloud/arubacloud_driver.rb @@ -17,9 +17,6 @@ require "savon" -Savon.configure do |config| - config.log = false -end HTTPI.log = false @@ -307,7 +304,7 @@ class ArubacloudDriver < Deltacloud::BaseDriver def new_client(credentials, realm_id=nil) safely do wsdl = realm_id ? Deltacloud::Drivers::driver_config[:aruba][:entrypoints]["compute"]["dc#{realm_id}"] : endpoint - client = Savon.client(wsdl) + client = Savon.client({wsdl: wsdl, log: false}) client.wsse.credentials credentials.user, credentials.password client.request :get_user_authentication_token client