You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by ra...@apache.org on 2019/04/05 17:02:07 UTC

[trafficcontrol] branch master updated: removes a ds type (DNSLive) that is not considered a steering type (#3460)

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

rawlin 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 02312c5  removes a ds type (DNSLive) that is not considered a steering type (#3460)
02312c5 is described below

commit 02312c5c3ca4b9f6c6035b506db61378cccd3871
Author: Jeremy Mitchell <mi...@users.noreply.github.com>
AuthorDate: Fri Apr 5 11:02:02 2019 -0600

    removes a ds type (DNSLive) that is not considered a steering type (#3460)
---
 lib/go-tc/enum.go | 2 --
 1 file changed, 2 deletions(-)

diff --git a/lib/go-tc/enum.go b/lib/go-tc/enum.go
index ce1e4fb..fbf7c6d 100644
--- a/lib/go-tc/enum.go
+++ b/lib/go-tc/enum.go
@@ -511,8 +511,6 @@ func (t DSType) IsSteering() bool {
 	case DSTypeSteering:
 		fallthrough
 	case DSTypeClientSteering:
-		fallthrough
-	case DSTypeDNSLive:
 		return true
 	}
 	return false