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

Allow for 203 on list_images when using Rackspace

This commit is contained in:
Jon Crosby 2009-10-17 04:17:26 +08:00 committed by Wesley Beary
parent 0540c458c3
commit 1e27e61687

View file

@ -16,7 +16,7 @@ unless Fog.mocking?
# * 'status'<~String> - Status of image # * 'status'<~String> - Status of image
def list_images def list_images
request( request(
:expects => 200, :expects => [200, 203],
:method => 'GET', :method => 'GET',
:path => 'images.json' :path => 'images.json'
) )