rdiff-backup-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Rdiff-backup-commits] rdiff-backup CHANGELOG rdiff_backup/robust.py


From: Andrew Ferguson
Subject: [Rdiff-backup-commits] rdiff-backup CHANGELOG rdiff_backup/robust.py
Date: Thu, 18 Dec 2008 03:46:51 +0000

CVSROOT:        /sources/rdiff-backup
Module name:    rdiff-backup
Changes by:     Andrew Ferguson <owsla> 08/12/18 03:46:51

Modified files:
        .              : CHANGELOG 
        rdiff_backup   : robust.py 

Log message:
        Add ETIMEDOUT to the list of recoverable errors

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/rdiff-backup/CHANGELOG?cvsroot=rdiff-backup&r1=1.327&r2=1.328
http://cvs.savannah.gnu.org/viewcvs/rdiff-backup/rdiff_backup/robust.py?cvsroot=rdiff-backup&r1=1.42&r2=1.43

Patches:
Index: CHANGELOG
===================================================================
RCS file: /sources/rdiff-backup/rdiff-backup/CHANGELOG,v
retrieving revision 1.327
retrieving revision 1.328
diff -u -b -r1.327 -r1.328
--- CHANGELOG   18 Dec 2008 02:55:57 -0000      1.327
+++ CHANGELOG   18 Dec 2008 03:46:51 -0000      1.328
@@ -1,7 +1,10 @@
 New in v1.2.3 (????/??/??)
 ---------------------------
 
-Supress warnings about the deprecated sha module in Python 2.6. We'll remove
+Add ETIMEDOUT to the list of recoverable errors; when irrecoverable, a
+ConnectionError is raised. Closes Ubuntu bug #304659. (Andrew Ferguson)
+
+Suppress warnings about the deprecated sha module in Python 2.6. We'll remove
 this after rdiff-backup is ported to Python 3. (Patch from Josh Nisly)
 
 Test for symlink permissions now produces a functioning symlink. Thanks to

Index: rdiff_backup/robust.py
===================================================================
RCS file: /sources/rdiff-backup/rdiff-backup/rdiff_backup/robust.py,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -b -r1.42 -r1.43
--- rdiff_backup/robust.py      11 Nov 2008 22:45:53 -0000      1.42
+++ rdiff_backup/robust.py      18 Dec 2008 03:46:51 -0000      1.43
@@ -56,7 +56,7 @@
                                                                         
'ENAMETOOLONG', 'EINTR', 'ESTALE',
                                                                         
'ENOTEMPTY', 'EIO', 'ETXTBSY',
                                                                         
'ESRCH', 'EINVAL', 'EDEADLOCK',
-                                                                        
'EDEADLK', 'EOPNOTSUPP'))):
+                                                                        
'EDEADLK', 'EOPNOTSUPP', 'ETIMEDOUT'))):
                return 1
        return 0
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]