Remove TM2 unused symbols

Project: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/commit/3cbd6466
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/tree/3cbd6466
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/diff/3cbd6466

Branch: refs/heads/master
Commit: 3cbd64662b8ab4c6f304cd3aba83b672432f5c44
Parents: 56abc4b
Author: Robert Butts <robert.o.bu...@gmail.com>
Authored: Thu Oct 20 14:33:24 2016 -0600
Committer: Jeremy Mitchell <mitchell...@gmail.com>
Committed: Fri Oct 28 15:04:12 2016 -0600

----------------------------------------------------------------------
 .../traffic_monitor/health/cache_health.go      | 22 --------------------
 .../traffic_monitor/manager/healthresult.go     |  3 ---
 2 files changed, 25 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/3cbd6466/traffic_monitor/experimental/traffic_monitor/health/cache_health.go
----------------------------------------------------------------------
diff --git 
a/traffic_monitor/experimental/traffic_monitor/health/cache_health.go 
b/traffic_monitor/experimental/traffic_monitor/health/cache_health.go
index eba1d30..cf1acff 100644
--- a/traffic_monitor/experimental/traffic_monitor/health/cache_health.go
+++ b/traffic_monitor/experimental/traffic_monitor/health/cache_health.go
@@ -10,28 +10,6 @@ import (
        "strings"
 )
 
-// Get the String value of one of those pesky map[string]interface{} things 
that seem so easy
-func getString(key string, intface map[string]interface{}) (string, error) {
-       str, ok := intface[key].(string)
-
-       if ok {
-               return str, nil
-       } else {
-               return "", fmt.Errorf("Error in getString: No string found for 
key %s", key)
-       }
-}
-
-// Get the float64 value of one of those pesky map[string]interface{} things 
that seem so easy
-func getNumber(key string, intface map[string]interface{}) (float64, error) {
-       val, ok := intface[key].(float64)
-
-       if ok {
-               return val, nil
-       } else {
-               return -1, fmt.Errorf("Error in getNumber: No number found for 
%s", key)
-       }
-}
-
 func setError(newResult *cache.Result, err error) {
        newResult.Error = err
        newResult.Available = false

http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/3cbd6466/traffic_monitor/experimental/traffic_monitor/manager/healthresult.go
----------------------------------------------------------------------
diff --git 
a/traffic_monitor/experimental/traffic_monitor/manager/healthresult.go 
b/traffic_monitor/experimental/traffic_monitor/manager/healthresult.go
index b4ad2bb..dda4d27 100644
--- a/traffic_monitor/experimental/traffic_monitor/manager/healthresult.go
+++ b/traffic_monitor/experimental/traffic_monitor/manager/healthresult.go
@@ -84,9 +84,6 @@ func StartHealthResultManager(
        return lastHealthDurations, events, localCacheStatus
 }
 
-// cacheAggregateSeconds is how often to aggregate stats, if the health chan 
is never empty. (Otherwise, we read from the chan until it's empty, then 
aggregate, continuously)
-const cacheAggregateSeconds = 1
-
 func healthResultManagerListen(
        cacheHealthChan <-chan cache.Result,
        toData todata.TODataThreadsafe,

Reply via email to