*Changed telemetry collection interval from once every hour to once every 24 hours

This commit is contained in:
David Berdik 2016-11-19 15:29:55 -05:00
parent d72d24b67d
commit 65a4961169

View File

@ -60,7 +60,7 @@ public class Telemetry implements Runnable {
urlConn.getInputStream();
// Wait one hour before we do this again.
Thread.sleep(3600000);
Thread.sleep(86400000);
} catch (Exception e) {}
}
}