You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltacloud.apache.org by mf...@apache.org on 2012/05/25 09:34:06 UTC

[2/4] git commit: EC2: Fixed wrong constant in euca driver. Added missing require to helpers.rb

EC2: Fixed wrong constant in euca driver. Added missing require to helpers.rb


Project: http://git-wip-us.apache.org/repos/asf/deltacloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltacloud/commit/c175084c
Tree: http://git-wip-us.apache.org/repos/asf/deltacloud/tree/c175084c
Diff: http://git-wip-us.apache.org/repos/asf/deltacloud/diff/c175084c

Branch: refs/heads/master
Commit: c175084c904bf9211cf0d1cc4ca9f0964404499b
Parents: 888b759
Author: Michal Fojtik <mf...@redhat.com>
Authored: Wed May 23 15:40:43 2012 +0200
Committer: Michal fojtik <mf...@redhat.com>
Committed: Fri May 25 09:33:50 2012 +0200

----------------------------------------------------------------------
 .../drivers/eucalyptus/eucalyptus_driver.rb        |    2 +-
 server/lib/ec2/helpers.rb                          |    1 +
 2 files changed, 2 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/deltacloud/blob/c175084c/server/lib/deltacloud/drivers/eucalyptus/eucalyptus_driver.rb
----------------------------------------------------------------------
diff --git a/server/lib/deltacloud/drivers/eucalyptus/eucalyptus_driver.rb b/server/lib/deltacloud/drivers/eucalyptus/eucalyptus_driver.rb
index 1872cf3..b87a026 100644
--- a/server/lib/deltacloud/drivers/eucalyptus/eucalyptus_driver.rb
+++ b/server/lib/deltacloud/drivers/eucalyptus/eucalyptus_driver.rb
@@ -63,7 +63,7 @@ module Deltacloud
         end
 
         def self.instance_state_machine
-          EC2::EC2Driver.instance_state_machine
+          Ec2::Ec2Driver.instance_state_machine
         end
 
         def instance_state_machine

http://git-wip-us.apache.org/repos/asf/deltacloud/blob/c175084c/server/lib/ec2/helpers.rb
----------------------------------------------------------------------
diff --git a/server/lib/ec2/helpers.rb b/server/lib/ec2/helpers.rb
index 7517f36..cded974 100644
--- a/server/lib/ec2/helpers.rb
+++ b/server/lib/ec2/helpers.rb
@@ -18,5 +18,6 @@ module Deltacloud
 end
 
 require_relative './helpers/errors'
+require_relative './helpers/result'
 require_relative '../deltacloud/helpers/driver_helper'
 require_relative '../deltacloud/helpers/auth_helper'