Details
Details
- Reviewers
Alphare - Group Reviewers
hg-reviewers - Commits
- rHG000130cfafb6: rhg: Update the dirstate on disk after status
Diff Detail
Diff Detail
- Repository
- rHG Mercurial
- Branch
- default
- Lint
No Linters Available - Unit
No Unit Test Coverage
Event Timeline
rust/rhg/src/commands/status.rs | ||
---|---|---|
476 | I think we should add a comment here explaining why this racy code is not racy (because it's gated behind the mtime_boundary and any change that is caught in this boundary is discarded from this anyway). |
rust/rhg/src/commands/status.rs | ||
---|---|---|
476 | This was actually missing all of the mtime_boundary logic since I had ported to Rust an earlier version of the Python code, without the recent changes that added mtime_boundary during ambiguous file resolution. This is fixed in the latest revision of this patch. |
I think we should add a comment here explaining why this racy code is not racy (because it's gated behind the mtime_boundary and any change that is caught in this boundary is discarded from this anyway).