Commit 6f2ba10c authored by ben's avatar ben

See changelog for 0.6.1


git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup@54 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
parent f41f96ee
...@@ -270,8 +270,10 @@ class HLDestinationStruct: ...@@ -270,8 +270,10 @@ class HLDestinationStruct:
(exp[0] in [2, # Means that a file is missing (exp[0] in [2, # Means that a file is missing
5, # Reported by docv (see list) 5, # Reported by docv (see list)
13, # Permission denied IOError 13, # Permission denied IOError
26] # Requested by Campbell (see list) - 20, # Means a directory changed to non-dir
26, # Requested by Campbell (see list) -
# happens on some NT systems # happens on some NT systems
36] # filename too long
))): ))):
Log("Skipping file", 2) Log("Skipping file", 2)
return None return None
......
...@@ -135,8 +135,8 @@ class Logger: ...@@ -135,8 +135,8 @@ class Logger:
exc_info = sys.exc_info() exc_info = sys.exc_info()
logging_func("Exception %s raised of class %s" % logging_func("Exception %s raised of class %s" %
(exc_info[1], exc_info[0]), 2) (exc_info[1], exc_info[0]), 3)
logging_func("".join(traceback.format_tb(exc_info[2])), 2) logging_func("".join(traceback.format_tb(exc_info[2])), 3)
Log = Logger() Log = Logger()
...@@ -295,8 +295,8 @@ class SaveState: ...@@ -295,8 +295,8 @@ class SaveState:
def touch_last_file(cls): def touch_last_file(cls):
"""Touch last file marker, indicating backup has begun""" """Touch last file marker, indicating backup has begun"""
cls._last_file_sym.touch() if not cls._last_file_sym.lstat(): cls._last_file_sym.touch()
def touch_last_file_definitive(cls): def touch_last_file_definitive(cls):
"""Create last-file-definitive marker """Create last-file-definitive marker
...@@ -403,6 +403,7 @@ class Resume: ...@@ -403,6 +403,7 @@ class Resume:
def SetSessionInfo(cls): def SetSessionInfo(cls):
"""Read data directory and initialize _session_info""" """Read data directory and initialize _session_info"""
assert Globals.isbackup_writer
silist = [] silist = []
rp_quad_dict = cls.group_rps_by_time(cls.get_relevant_rps()) rp_quad_dict = cls.group_rps_by_time(cls.get_relevant_rps())
times = rp_quad_dict.keys() times = rp_quad_dict.keys()
......
...@@ -270,8 +270,10 @@ class HLDestinationStruct: ...@@ -270,8 +270,10 @@ class HLDestinationStruct:
(exp[0] in [2, # Means that a file is missing (exp[0] in [2, # Means that a file is missing
5, # Reported by docv (see list) 5, # Reported by docv (see list)
13, # Permission denied IOError 13, # Permission denied IOError
26] # Requested by Campbell (see list) - 20, # Means a directory changed to non-dir
26, # Requested by Campbell (see list) -
# happens on some NT systems # happens on some NT systems
36] # filename too long
))): ))):
Log("Skipping file", 2) Log("Skipping file", 2)
return None return None
......
...@@ -135,8 +135,8 @@ class Logger: ...@@ -135,8 +135,8 @@ class Logger:
exc_info = sys.exc_info() exc_info = sys.exc_info()
logging_func("Exception %s raised of class %s" % logging_func("Exception %s raised of class %s" %
(exc_info[1], exc_info[0]), 2) (exc_info[1], exc_info[0]), 3)
logging_func("".join(traceback.format_tb(exc_info[2])), 2) logging_func("".join(traceback.format_tb(exc_info[2])), 3)
Log = Logger() Log = Logger()
...@@ -168,7 +168,7 @@ rdiff-backup with the --force option if you want to mirror anyway.""" % ...@@ -168,7 +168,7 @@ rdiff-backup with the --force option if you want to mirror anyway.""" %
SetConnections.BackupInitConnections(rpin.conn, rpout.conn) SetConnections.BackupInitConnections(rpin.conn, rpout.conn)
self.backup_init_dirs(rpin, rpout) self.backup_init_dirs(rpin, rpout)
Time.setcurtime() Time.setcurtime()
RSI = Resume.ResumeCheck() RSI = Globals.backup_writer.Resume.ResumeCheck()
if self.prevtime: if self.prevtime:
Time.setprevtime(self.prevtime) Time.setprevtime(self.prevtime)
SaveState.init_filenames(1) SaveState.init_filenames(1)
......
...@@ -295,8 +295,8 @@ class SaveState: ...@@ -295,8 +295,8 @@ class SaveState:
def touch_last_file(cls): def touch_last_file(cls):
"""Touch last file marker, indicating backup has begun""" """Touch last file marker, indicating backup has begun"""
cls._last_file_sym.touch() if not cls._last_file_sym.lstat(): cls._last_file_sym.touch()
def touch_last_file_definitive(cls): def touch_last_file_definitive(cls):
"""Create last-file-definitive marker """Create last-file-definitive marker
...@@ -403,6 +403,7 @@ class Resume: ...@@ -403,6 +403,7 @@ class Resume:
def SetSessionInfo(cls): def SetSessionInfo(cls):
"""Read data directory and initialize _session_info""" """Read data directory and initialize _session_info"""
assert Globals.isbackup_writer
silist = [] silist = []
rp_quad_dict = cls.group_rps_by_time(cls.get_relevant_rps()) rp_quad_dict = cls.group_rps_by_time(cls.get_relevant_rps())
times = rp_quad_dict.keys() times = rp_quad_dict.keys()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment