mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Fixed an uninitialized constant error
This commit is contained in:
parent
ab25d09d94
commit
4f0327f645
1 changed files with 1 additions and 1 deletions
|
@ -120,7 +120,7 @@ module Fog
|
||||||
end if openstack_region
|
end if openstack_region
|
||||||
|
|
||||||
if service['endpoints'].empty?
|
if service['endpoints'].empty?
|
||||||
raise Errors::NotFound.new("No endpoints available for region '#{openstack_region}'")
|
raise Fog::Errors::NotFound.new("No endpoints available for region '#{openstack_region}'")
|
||||||
end if openstack_region
|
end if openstack_region
|
||||||
|
|
||||||
unless service
|
unless service
|
||||||
|
|
Loading…
Add table
Reference in a new issue