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

[trafficcontrol] branch master updated: fix inconsistent Tenant member name in DeliveryService struct

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

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


The following commit(s) were added to refs/heads/master by this push:
     new a498d32  fix inconsistent Tenant member name in DeliveryService struct
a498d32 is described below

commit a498d326d71a77091a022fc2a9ad0838f723884f
Author: Dan Kirkwood <da...@apache.org>
AuthorDate: Tue Sep 25 15:00:24 2018 -0400

    fix inconsistent Tenant member name in DeliveryService struct
---
 lib/go-tc/deliveryservices.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/go-tc/deliveryservices.go b/lib/go-tc/deliveryservices.go
index effa711..c47301c 100644
--- a/lib/go-tc/deliveryservices.go
+++ b/lib/go-tc/deliveryservices.go
@@ -71,7 +71,7 @@ type DeliveryService struct {
 	DeepCachingType   DeepCachingType `json:"deepCachingType"`
 	FQPacingRate      int             `json:"fqPacingRate,omitempty"`
 	SigningAlgorithm  string          `json:"signingAlgorithm" db:"signing_algorithm"`
-	TenantName        string          `json:"tenantName,omitempty"`
+	Tenant            string          `json:"tenant,omitempty"`
 	TRRequestHeaders  string          `json:"trRequestHeaders,omitempty"`
 	TRResponseHeaders string          `json:"trResponseHeaders,omitempty"`
 }