summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin Santa Barbara <justin@fathomdb.com>2010-07-19 21:57:31 -0700
committerJustin Santa Barbara <justin@fathomdb.com>2010-07-19 21:57:31 -0700
commit76b16a8c618f18da62ceea4c9a0e794c15c2d2bb (patch)
treeb35b8b40d56b948773d891785d14cbdaf4f55033
parent6626df2934cd317badd0db87401acaf8792568ed (diff)
parent35dc27bbcb3a29ae662a0f8ccfed7a0f76a49c13 (diff)
Merged https://code.launchpad.net/~justin-fathomdb/nova/copy-error-handling
-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):