-
Notifications
You must be signed in to change notification settings - Fork 13.3k
[discussion] ErrorKind::FilesystemQuotaExceeded
from io_error_more
#130190
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Comments
Map `WSAEDQUOT` to `ErrorKind::FilesystemQuotaExceeded` cc rust-lang#86442 As summarized in rust-lang#130190, there seems to be a consensus that this should be done.
Map `WSAEDQUOT` to `ErrorKind::FilesystemQuotaExceeded` cc rust-lang#86442 As summarized in rust-lang#130190, there seems to be a consensus that this should be done.
Rollup merge of rust-lang#130206 - GrigorenkoPV:WSAEDQUOT, r=ChrisDenton Map `WSAEDQUOT` to `ErrorKind::FilesystemQuotaExceeded` cc rust-lang#86442 As summarized in rust-lang#130190, there seems to be a consensus that this should be done.
Team member @dtolnay has proposed to merge this. The next step is review by the rest of the tagged team members: No concerns currently listed. Once a majority of reviewers approve (and at most 2 approvals are outstanding), this will enter its final comment period. If you spot a major issue that hasn't been raised at any point in this process, please speak up! See this document for info about what commands tagged team members can give me. |
Ping @Amanieu @BurntSushi @m-ou-se |
🔔 This is now entering its final comment period, as per the review above. 🔔 |
The final comment period, with a disposition to merge, as per the review above, is now complete. As the automated representative of the governance process, I would like to thank the author for their work and everyone else who contributed. This will be merged soon. |
Stabilize `std::io::ErrorKind::QuotaExceeded` Also drop "Filesystem" from its name. See rust-lang#130190 for more info. FCP in rust-lang#130190 cc rust-lang#86442 r? `@dtolnay`
Rollup merge of rust-lang#130254 - GrigorenkoPV:QuotaExceeded, r=dtolnay Stabilize `std::io::ErrorKind::QuotaExceeded` Also drop "Filesystem" from its name. See rust-lang#130190 for more info. FCP in rust-lang#130190 cc rust-lang#86442 r? `@dtolnay`
Stabilized in #130254, closing. |
Stabilize `std::io::ErrorKind::QuotaExceeded` Also drop "Filesystem" from its name. See rust-lang#130190 for more info. FCP in rust-lang#130190 cc rust-lang#86442 r? `@dtolnay`
@rustbot label C-discussion
Main tracking issue: #86442
Background
The
io_error_more
feature introduced 21 new variants intoErrorKind
. They were FCP'd back in December 2022, but there appeared to be quite a lot of disagreement about 4 of the added variants, so the stabilization (#106375) got stalled for over twenty months. Thankfully, the 17 uncontroversial variants got stabilized in #128316, so now we just need to iron out a satisfactory design for the remaining 4 variants, and then they can be stabilized too.In order to not block any of the remaining variants on each other and to not intertwine the discussions, I've created 4 separate issues, which summarize the concerns & suggestions voiced up until this point and can serve as a place for further discussion.
FilesystemLoop
: [discussion]ErrorKind::FilesystemLoop
fromio_error_more
#130188FilesystemQuotaExceeded
: you are hereCrossesDevices
: [discussion]ErrorKind::CrossesDevices
fromio_error_more
#130191InvalidFilename
: [discussion]ErrorKind::InvalidFilename
fromio_error_more
#130192FilesystemQuotaExceeded
Currently corresponds to
EDQUOT
on Unix andERROR_DISK_QUOTA_EXCEEDED
on Windows. (#86442 (comment)). As well asWSAEDQUOT
on Windows (#130206).Current docs description:
Drop "Filesystem" from the name
Originally posted by kalcutter in #86442 (comment)
Originally posted by Josh Triplett in #106375 (comment)
Originally posted by Ian Jackson in #106375 (comment)
Seemingly a consensus.
Also mapWSAEDQUOT
on WindowsDone in #130206.
Old description
Originally posted by kalcutter in #106375 (comment)
Originally posted by Ian Jackson in #106375 (comment)
A consensus.
The text was updated successfully, but these errors were encountered: