Remove useless re-raise of cancellation

This commit is contained in:
Neil Booth 2016-11-15 20:13:50 +09:00
parent db187540d5
commit d85034353f
2 changed files with 2 additions and 7 deletions

View File

@ -42,12 +42,8 @@ def main_loop():
loop.add_signal_handler(getattr(signal, signame),
partial(on_signal, signame))
try:
loop.run_until_complete(future)
except asyncio.CancelledError:
pass
finally:
loop.close()
loop.run_until_complete(future)
loop.close()
def main():

View File

@ -388,7 +388,6 @@ class BlockProcessor(server.db.DB):
self.on_cancel()
# This lets the asyncio subsystem process futures cancellations
await asyncio.sleep(0)
raise
def on_cancel(self):
'''Called when the main loop is cancelled.