##// END OF EJS Templates
largefiles: remove the `changing_parents` context in `openlfdirstate`...
marmoute -
r50915:e2f3cba6 default
parent child Browse files
Show More
@@ -233,15 +233,14 b' def openlfdirstate(ui, repo, create=True'
233 if len(standins) > 0:
233 if len(standins) > 0:
234 vfs.makedirs(lfstoredir)
234 vfs.makedirs(lfstoredir)
235
235
236 with lfdirstate.changing_parents(repo):
236 for standin in standins:
237 for standin in standins:
237 lfile = splitstandin(standin)
238 lfile = splitstandin(standin)
238 lfdirstate.hacky_extension_update_file(
239 lfdirstate.hacky_extension_update_file(
239 lfile,
240 lfile,
240 p1_tracked=True,
241 p1_tracked=True,
241 wc_tracked=True,
242 wc_tracked=True,
242 possibly_dirty=True,
243 possibly_dirty=True,
243 )
244 )
245 except error.LockError:
244 except error.LockError:
246 # Assume that whatever was holding the lock was important.
245 # Assume that whatever was holding the lock was important.
247 # If we were doing something important, we would already have
246 # If we were doing something important, we would already have
General Comments 0
You need to be logged in to leave comments. Login now