Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix delta_state_dumps.sh compare order in Linux #70

Open
JulianGCalderon opened this issue Oct 21, 2024 · 0 comments · May be fixed by #87
Open

Fix delta_state_dumps.sh compare order in Linux #70

JulianGCalderon opened this issue Oct 21, 2024 · 0 comments · May be fixed by #87

Comments

@JulianGCalderon
Copy link
Contributor

The script uses ls -trU1 to diff the state dumps in order, so that we can find the first tx that introduced errors in the state (as the following transaction will fail due to the first one).

The flag U in Mac orders by date of creation, but in Linux it does not work that way, resulting in a bad ordering. We should fix this.

The simplest solution is to remove the flag, and order by modification date (default), which works both in Mac and Linux.

@pefontana pefontana linked a pull request Oct 21, 2024 that will close this issue
@JulianGCalderon JulianGCalderon linked a pull request Oct 31, 2024 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant