##// END OF EJS Templates
repair: mark the critical section of strip() as unsafe...
Augie Fackler -
r38546:6e0c66ef default
parent child Browse files
Show More
@@ -186,6 +186,7 def strip(ui, repo, nodelist, backup=Tru
186 tmpbundlefile = backupbundle(repo, savebases, saveheads, node, 'temp',
186 tmpbundlefile = backupbundle(repo, savebases, saveheads, node, 'temp',
187 compress=False, obsolescence=False)
187 compress=False, obsolescence=False)
188
188
189 with ui.uninterruptable():
189 try:
190 try:
190 with repo.transaction("strip") as tr:
191 with repo.transaction("strip") as tr:
191 offset = len(tr.entries)
192 offset = len(tr.entries)
General Comments 0
You need to be logged in to leave comments. Login now