mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
skip lookup for get if id is nil
This commit is contained in:
parent
3d7ac75cbe
commit
5ef58a135a
6 changed files with 18 additions and 6 deletions
|
@ -43,7 +43,9 @@ module Fog
|
|||
end
|
||||
|
||||
def get(public_ip)
|
||||
if public_ip
|
||||
all(public_ip).first
|
||||
end
|
||||
rescue Fog::Errors::BadRequest
|
||||
nil
|
||||
end
|
||||
|
|
|
@ -39,7 +39,9 @@ module Fog
|
|||
end
|
||||
|
||||
def get(instance_id)
|
||||
if instance_id
|
||||
all(instance_id).first
|
||||
end
|
||||
rescue Fog::Errors::BadRequest
|
||||
nil
|
||||
end
|
||||
|
|
|
@ -37,7 +37,9 @@ module Fog
|
|||
end
|
||||
|
||||
def get(key_name)
|
||||
if key_name
|
||||
all(key_name).first
|
||||
end
|
||||
rescue Fog::Errors::BadRequest
|
||||
nil
|
||||
end
|
||||
|
|
|
@ -37,7 +37,9 @@ module Fog
|
|||
end
|
||||
|
||||
def get(group_name)
|
||||
if group_name
|
||||
all(group_name).first
|
||||
end
|
||||
rescue Fog::Errors::BadRequest
|
||||
nil
|
||||
end
|
||||
|
|
|
@ -43,7 +43,9 @@ module Fog
|
|||
end
|
||||
|
||||
def get(snapshot_id)
|
||||
if snapshot_id
|
||||
all(snapshot_id).first
|
||||
end
|
||||
rescue Fog::Errors::BadRequest
|
||||
nil
|
||||
end
|
||||
|
|
|
@ -43,7 +43,9 @@ module Fog
|
|||
end
|
||||
|
||||
def get(volume_id)
|
||||
if volume_id
|
||||
all(volume_id).first
|
||||
end
|
||||
rescue Fog::Errors::BadRequest
|
||||
nil
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue