-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Rust: fix windows flakiness #18167
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
Rust: fix windows flakiness #18167
Conversation
0533415
to
4889032
Compare
This reverts commit 90fa3ec.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great. I've left a suggestion on the comment which I think makes it a bit easier to understand :)
// There seems to be some flaky inconsistencies around UNC paths on Windows, so if we fail to | ||
// find the file id for a UNC path like that, we try to canonicalize it using dunce then. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// There seems to be some flaky inconsistencies around UNC paths on Windows, so if we fail to | |
// find the file id for a UNC path like that, we try to canonicalize it using dunce then. | |
// There seems to be some flaky inconsistencies around UNC paths on Windows, so if we fail to | |
// find the file id for a UNC path, we try with a canonicalized (by dunce) path as well. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense! I'll do a follow up though on Monday, I prefer to not have the flakiness in for the nightlies 🙂
This is a follow up to #18167, addressing a review comment from @paldepind.
This is a follow up to #18167, addressing a review comment from @paldepind.
No description provided.