1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Merge pull request #1657 from rackspace/constant_fix

[rackspace] fixing constant already defined error
This commit is contained in:
Kyle Rames 2013-03-12 09:07:57 -07:00
commit 921943ed93

View file

@ -5,8 +5,8 @@ module Fog
module Rackspace
extend Fog::Provider
US_AUTH_ENDPOINT = 'https://identity.api.rackspacecloud.com/v2.0'
UK_AUTH_ENDPOINT = 'https://lon.identity.api.rackspacecloud.com/v2.0'
US_AUTH_ENDPOINT = 'https://identity.api.rackspacecloud.com/v2.0' unless defined? US_AUTH_ENDPOINT
UK_AUTH_ENDPOINT = 'https://lon.identity.api.rackspacecloud.com/v2.0' unless defined? UK_AUTH_ENDPOINT
module Errors
class ServiceError < Fog::Errors::Error