1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-26 09:47:58 +00:00

prettier connection closed message, fixes #307

This commit is contained in:
Thomas Waldmann 2015-10-31 22:41:08 +01:00
parent 3c2dee6eb6
commit 1740384763

View file

@ -23,6 +23,10 @@ class ConnectionClosed(Error):
"""Connection closed by remote host""" """Connection closed by remote host"""
class ConnectionClosedWithHint(ConnectionClosed):
"""Connection closed by remote host. {}"""
class PathNotAllowed(Error): class PathNotAllowed(Error):
"""Repository path not allowed""" """Repository path not allowed"""
@ -148,7 +152,7 @@ def __init__(self, location, create=False):
try: try:
version = self.call('negotiate', 1) version = self.call('negotiate', 1)
except ConnectionClosed: except ConnectionClosed:
raise Exception('Server immediately closed connection - is Borg installed and working on the server?') raise ConnectionClosedWithHint('Is borg working on the server?')
if version != 1: if version != 1:
raise Exception('Server insisted on using unsupported protocol version %d' % version) raise Exception('Server insisted on using unsupported protocol version %d' % version)
self.id = self.call('open', location.path, create) self.id = self.call('open', location.path, create)