Raise clean error when node timeout when stopped

pull/774/head
Julien Duponchelle 8 years ago
parent dc26be43c2
commit 5dee4eb052
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -398,9 +398,11 @@ class Node:
"""
try:
yield from self.post("/stop")
# We don't care if a compute is down at this step
# We don't care if a node is down at this step
except (aiohttp.errors.ClientOSError, aiohttp.errors.ClientHttpProcessingError, aiohttp.web.HTTPError):
pass
except asyncio.TimeoutError:
raise aiohttp.web.HTTPRequestTimeout(text="Timeout when stopping {}".format(self._name))
@asyncio.coroutine
def suspend(self):

Loading…
Cancel
Save