diff --git a/proxy/src/console/provider.rs b/proxy/src/console/provider.rs index 7d587ff1ec..8742534f5d 100644 --- a/proxy/src/console/provider.rs +++ b/proxy/src/console/provider.rs @@ -89,7 +89,10 @@ pub mod errors { Self::Console { status: http::StatusCode::LOCKED, ref text, - } => !text.contains("quota"), + } => { + !text.contains("written data quota exceeded") + && !text.contains("the limit for current plan reached") + } // retry server errors Self::Console { status, .. } if status.is_server_error() => true, _ => false,