You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When executing fatresize as a user that lacks permissions to the specified device, it fails with the following message:
You must specify exactly one existing device.
Since the user specified a device, this message is misleading. I ran into this issue and I suspect the two users participating in this reddit thread did as well.
The root cause seems to be the ped_device_get call in the probe_device function which errors out due to lack of permissions, but the error message is swallowed instead of reported back to the user.
I'll create a PR shortly that doesn't address the root cause, but at least provides an error message that hints to the user that their lack of permissions may be the problem.
The text was updated successfully, but these errors were encountered:
camio
added a commit
to camio/fatresize
that referenced
this issue
Jan 14, 2023
The missing device condition can also be caused by a lack of permissions
to the specified device as described in ya-mouse#28. This revised error message
hints that this may be the cause of the failure.
Fixesya-mouse#28.
When executing fatresize as a user that lacks permissions to the specified device, it fails with the following message:
Since the user specified a device, this message is misleading. I ran into this issue and I suspect the two users participating in this reddit thread did as well.
The root cause seems to be the
ped_device_get
call in theprobe_device
function which errors out due to lack of permissions, but the error message is swallowed instead of reported back to the user.I'll create a PR shortly that doesn't address the root cause, but at least provides an error message that hints to the user that their lack of permissions may be the problem.
The text was updated successfully, but these errors were encountered: