chore: Indention query

This commit is contained in:
ditatompel 2024-05-08 19:29:26 +07:00
parent 738c0826c8
commit edb27100bb
No known key found for this signature in database
GPG key ID: 31D3D06D77950979

View file

@ -414,8 +414,8 @@ func (repo *MoneroRepo) ProcessJob(report ProbeReport, proberId int64) error {
qstats := `SELECT
SUM(if(is_available='1',1,0)) AS online,
SUM(if(is_available='0',1,0)) AS offline,
SUM(if(id='0',0,1)) AS total_fetched FROM
tbl_probe_log WHERE node_id = ? AND date_checked > ?`
SUM(if(id='0',0,1)) AS total_fetched
FROM tbl_probe_log WHERE node_id = ? AND date_checked > ?`
repo.db.Get(&nodeStats, qstats, report.NodeInfo.Id, limitTs)
avgUptime := (float64(nodeStats.OnlineCount) / float64(nodeStats.TotalFetched)) * 100