Submitter | Boris Feld |
---|---|
Date | Nov. 26, 2018, 6:22 p.m. |
Message ID | <5bcdd426a817c333ca30.1543256563@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/36776/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/mercurial/localrepo.py b/mercurial/localrepo.py --- a/mercurial/localrepo.py +++ b/mercurial/localrepo.py @@ -1030,7 +1030,7 @@ class localrepository(object): if path.startswith('cache/'): msg = 'accessing cache with vfs instead of cachevfs: "%s"' repo.ui.develwarn(msg % path, stacklevel=2, config="cache-vfs") - if path.startswith('journal.'): + if path.startswith('journal.') or path.startswith('undo.'): # journal is covered by 'lock' if repo._currentlock(repo._lockref) is None: repo.ui.develwarn('write with no lock: "%s"' % path,