Add deprecation comment on Uptime.migrateToHourlyStatistics

This commit is contained in:
TwinProduction 2021-04-25 19:56:09 -04:00
parent 4308f2c1ef
commit 8b3b2f70bf

View File

@ -130,6 +130,8 @@ func (uptime *Uptime) recalculate() {
}
}
// XXX: Remove this on v3.0.0
// Deprecated
func (uptime *Uptime) migrateToHourlyStatistics() {
log.Println("[migrateToHourlyStatistics] Got", len(uptime.SuccessfulExecutionsPerHour), "entries for successful executions and", len(uptime.TotalExecutionsPerHour), "entries for total executions")
uptime.HourlyStatistics = make(map[int64]*HourlyUptimeStatistics)