-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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 for cleaning working dir in case of same uri #49313
Open
ujjawal-khare
wants to merge
32
commits into
ray-project:master
Choose a base branch
from
ujjawal-khare-27:fix/ray-working-dir
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+51
−4
Open
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
7e25f87
fix for cleaning working dir in case of same uri
ujjawal-khare ccb394c
master merge
ujjawal-khare 64d936d
removed unused imports
ujjawal-khare 262ebdf
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare 5bc3556
timeout increased
ujjawal-khare e01f82c
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare bc4a2d5
timeout reverted
ujjawal-khare ddd9f5f
overwrite as optional
ujjawal-khare f86aaa4
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 0867484
master merge
ujjawal-khare 0212f71
gcs cleanup added
ujjawal-khare a2cae03
test added
ujjawal-khare e2951b4
cleanup
ujjawal-khare 528fae3
cleanup
ujjawal-khare 9a463b5
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 708a688
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 260f4d1
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 a141159
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 877f67f
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 65af26d
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare 3227384
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare 88b1fbe
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 e36c629
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 368eeaf
lint fix
ujjawal-khare 7b28ed4
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare 648b27c
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 3902f4b
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 1d07dbf
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 7d9cd86
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare a8ffb00
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare 6d9d3a4
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 2b29f59
Merge branch 'master' into fix/ray-working-dir
ujjawal-khare-27 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Why are these changes needed for this PR? Converting to abspath before doing relpath is pretty confusing for non-local filesystems (such as S3) where abs path doesn't make sense.
Let's revert this change.
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.
@justinvyu The test case was failing Buildkite Link due to an issue with path handling. Specifically, the file system mount was unable to locate the directory because of a mismatch between file_info.path and fs_path. To resolve this, I converted the paths to abs_path to ensure consistency and proper resolution.
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.
Where do you see that this test fails due to this line of code? The change above seems unrelated to this code.
As I mentioned above, we should not use abs path for this method anyways.