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:
commit
921943ed93
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue