summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nova/compute/node.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/compute/node.py b/nova/compute/node.py
index d681ec661..8f829995b 100644
--- a/nova/compute/node.py
+++ b/nova/compute/node.py
@@ -450,7 +450,7 @@ class Instance(object):
def _fetch_s3_image(self, image, path):
url = _image_url('%s/image' % image)
- d = self._pool.simpleExecute('curl --silent %s -o %s' % (url, path))
+ d = self._pool.simpleExecute('curl --silent --fail %s -o %s' % (url, path))
return d
def _fetch_local_image(self, image, path):