##// END OF EJS Templates
inotify: avoid passing potentially stale stat to update
Matt Mackall -
r7220:60826e07 default
parent child Browse files
Show More
@@ -338,7 +338,7 b' class Watcher(object):'
338 338 if not wfn.startswith(wtopdir):
339 339 continue
340 340 status = state[0]
341 st = self.getstat(wfn)
341 st = self.stat(wfn)
342 342 if status == 'r' and not st:
343 343 self.updatestatus(wfn, st, status=status)
344 344 else:
General Comments 0
You need to be logged in to leave comments. Login now