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
def list_images
request(
:expects => 200,
:expects => [200, 203],
:method => 'GET',
:path => 'images.json'
)