Consul is a distributed, highly available, and data center aware solution to connect and configure applications across dynamic, distributed infrastructure.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
795 B

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
syntax = "proto3";
package hashicorp.consul.mesh.v1alpha1;
// ALTERNATIVE: not using policy attachment semantics
message HTTPRouteRetries {
// NumRetries is the number of times to retry the request when a retryable
// result occurs.
int32 number = 1;
// RetryOnConnectFailure allows for connection failure errors to trigger a
// retry.
bool on_connect_failure = 2;
// RetryOn allows setting envoy specific conditions when a request should
// be automatically retried.
repeated string on_conditions = 3;
// RetryOnStatusCodes is a flat list of http response status codes that are
// eligible for retry. This again should be feasible in any reasonable proxy.
repeated uint32 on_status_codes = 4;
}