You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by de...@apache.org on 2018/04/11 19:38:54 UTC

[incubator-trafficcontrol] 02/02: adds fqpacing rate to ds structs

This is an automated email from the ASF dual-hosted git repository.

dewrich pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-trafficcontrol.git

commit feac92d21b96c37182078cf2ad1e369e3fa52607
Author: Jeremy Mitchell <mi...@gmail.com>
AuthorDate: Wed Apr 11 13:34:28 2018 -0600

    adds fqpacing rate to ds structs
---
 lib/go-tc/deliveryservices.go | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/go-tc/deliveryservices.go b/lib/go-tc/deliveryservices.go
index ff51864..c352882 100644
--- a/lib/go-tc/deliveryservices.go
+++ b/lib/go-tc/deliveryservices.go
@@ -73,6 +73,7 @@ type DeliveryService struct {
 	EdgeHeaderRewrite    string                 `json:"edgeHeaderRewrite"`
 	ExampleURLs          []string               `json:"exampleURLs"`
 	GeoLimit             int                    `json:"geoLimit"`
+	FQPacingRate         int                    `json:"fqPacingRate"`
 	GeoProvider          int                    `json:"geoProvider"`
 	GlobalMaxMBPS        int                    `json:"globalMaxMbps"`
 	GlobalMaxTPS         int                    `json:"globalMaxTps"`
@@ -129,6 +130,7 @@ type DeliveryServiceNullable struct {
 	DNSBypassTTL             *int                    `json:"dnsBypassTtl" db:"dns_bypass_ttl"`
 	DSCP                     *int                    `json:"dscp" db:"dscp"`
 	EdgeHeaderRewrite        *string                 `json:"edgeHeaderRewrite" db:"edge_header_rewrite"`
+	FQPacingRate             *int                    `json:"fqPacingRate" db:"fq_pacing_rate"`
 	GeoLimit                 *int                    `json:"geoLimit" db:"geo_limit"`
 	GeoLimitCountries        *string                 `json:"geoLimitCountries" db:"geo_limit_countries"`
 	GeoLimitRedirectURL      *string                 `json:"geoLimitRedirectURL" db:"geolimit_redirect_url"`

-- 
To stop receiving notification emails like this one, please contact
dewrich@apache.org.