-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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 typo in mount setup for initial userns fallback #11333
fix typo in mount setup for initial userns fallback #11333
Conversation
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.
Thanks!
- this fixes an invalid reference to the `goferToHostRPC.OpenMount` method in the urpc client, which leads to consistent errors like `FATAL ERROR: error setting up FS: opening <dir name>: unknown method`. The struct is called `goferToHostRPC`, not `goferRPC` - this bug is always hit when the current process does *not* have permissions to access the mount - this bug was introduced in this recently merged PR: #11128, which added this fallback mechanism FUTURE_COPYBARA_INTEGRATE_REVIEW=#11333 from benhurdelhey:ben-hurdelhey_data/fix-mount-setup-initial-userns-fallback ffb7334 PiperOrigin-RevId: 711765562
thanks @ayushr2! Seems like the build pipeline is failing, are these unrelated errors? |
Yeah seems unrelated, we will attempt submit again. |
@ayushr2 seems like it's still not merged, could you take another look? |
- this fixes an invalid reference to the `goferToHostRPC.OpenMount` method in the urpc client, which leads to consistent errors like `FATAL ERROR: error setting up FS: opening <dir name>: unknown method`. The struct is called `goferToHostRPC`, not `goferRPC` - this bug is always hit when the current process does *not* have permissions to access the mount - this bug was introduced in this recently merged PR: #11128, which added this fallback mechanism FUTURE_COPYBARA_INTEGRATE_REVIEW=#11333 from benhurdelhey:ben-hurdelhey_data/fix-mount-setup-initial-userns-fallback ffb7334 PiperOrigin-RevId: 711765562
@ayushr2 shall we trigger copybara for this PR again? Thank you so much! |
I saw it was just triggered. No need to reply thanks! |
goferToHostRPC.OpenMount
method in the urpc client, which leads to consistent errors likeFATAL ERROR: error setting up FS: opening <dir name>: unknown method
. The struct is calledgoferToHostRPC
, notgoferRPC