Sort results alphabetically when returning all service statuses

This commit is contained in:
TwinProduction
2021-09-02 23:09:29 -04:00
committed by Chris
parent 67642b130c
commit 670e35949e
5 changed files with 5 additions and 4 deletions

View File

@ -522,7 +522,7 @@ func (s *Store) updateServiceUptime(tx *sql.Tx, serviceID int64, result *core.Re
}
func (s *Store) getAllServiceKeys(tx *sql.Tx) (keys []string, err error) {
rows, err := tx.Query("SELECT service_key FROM service")
rows, err := tx.Query("SELECT service_key FROM service ORDER BY service_key")
if err != nil {
return nil, err
}