Browse Source

Changed reporting interval to 24 hour (1 hour was just for testing)

Torkel Ödegaard 10 years ago
parent
commit
71aa2ef2c2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pkg/metrics/report_usage.go

+ 1 - 1
pkg/metrics/report_usage.go

@@ -16,7 +16,7 @@ import (
 func StartUsageReportLoop() chan struct{} {
 	M_Instance_Start.Inc(1)
 
-	ticker := time.NewTicker(time.Hour)
+	ticker := time.NewTicker(time.Hour * 24)
 	for {
 		select {
 		case <-ticker.C: