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

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

commit 07eec2a66d33030d159d58d2dd7e25b46ba6fa53
Author: Dewayne Richardson <dewr...@apache.org>
AuthorDate: Wed Feb 21 12:45:02 2018 -0700

    fixed GetID() interface change
---
 traffic_ops/traffic_ops_golang/region/regions.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/traffic_ops/traffic_ops_golang/region/regions.go 
b/traffic_ops/traffic_ops_golang/region/regions.go
index ba6cad7..1454d59 100644
--- a/traffic_ops/traffic_ops_golang/region/regions.go
+++ b/traffic_ops/traffic_ops_golang/region/regions.go
@@ -43,8 +43,8 @@ func GetRefType() *TORegion {
 }
 
 //Implementation of the Identifier, Validator interface functions
-func (region *TORegion) GetID() int {
-       return region.ID
+func (region *TORegion) GetID() (int, bool) {
+       return region.ID, true
 }
 
 func (region *TORegion) GetAuditName() string {

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

Reply via email to