##// END OF EJS Templates
archival: fileit should not use atomictemp, causes performance regression...
Vincent Parrett -
r36785:a148c67d default
parent child Browse files
Show More
@@ -272,7 +272,7 b' class fileit(object):'
272 272 if islink:
273 273 self.opener.symlink(data, name)
274 274 return
275 f = self.opener(name, "w", atomictemp=True)
275 f = self.opener(name, "w", atomictemp=False)
276 276 f.write(data)
277 277 f.close()
278 278 destfile = os.path.join(self.basedir, name)
General Comments 0
You need to be logged in to leave comments. Login now