Skip to content
Merged
Changes from all commits
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
7 changes: 5 additions & 2 deletions contrib/endpoints/src/api_manager/service_control/proto.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1132,8 +1132,11 @@ Status Proto::ConvertAllocateQuotaResponse(
// The backend server for checking service status is unavailable.
case ::google::api::servicecontrol::v1::QuotaError::
BILLING_STATUS_UNAVAILABLE:
// The backend server for checking billing status is unavailable.
// Fail open for internal server errors per recommendation
// The backend server for checking billing status is unavailable.
// Fail open for internal server errors per recommendation
case ::google::api::servicecontrol::v1::QuotaError::
QUOTA_SYSTEM_UNAVAILABLE:
// The backend server for checking quota limits is unavailable.
return Status::OK;

default:
Expand Down