Commit 71aa2ef2 by Torkel Ödegaard

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

parent 03aa9976
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment