diff --git a/src/scheduler/connectivity.rs b/src/scheduler/connectivity.rs index 1c8d58762..c3573e64a 100644 --- a/src/scheduler/connectivity.rs +++ b/src/scheduler/connectivity.rs @@ -449,7 +449,7 @@ 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()); + ret += &format!("Quota: {}", &*escaper::encode_minimal(&e.to_string())); } } Ok(quota) => {