Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/scheduler/connectivity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,8 @@ impl Context {
// If not supported by the provider,
// just skip the "quota" section.
if !matches!(e, crate::quota::Error::NotSupportedByProvider) {
ret += &escaper::encode_minimal(&e.to_string());
// TODO translate "Quota".
Comment thread
WofWca marked this conversation as resolved.
Outdated
ret += &format!("Quota: {}", &*escaper::encode_minimal(&e.to_string()));
}
}
Ok(quota) => {
Expand Down
Loading