Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Attempted to debug locally but can't seem to do that, changing queries
  • Loading branch information
Evan Langlais committed Apr 29, 2019
1 parent f823725 commit 890b527
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gateway.go
Expand Up @@ -217,11 +217,11 @@ func (ws *socketConn) handleStatus(updates Packet) {
}

if value == 0 {
if _, err := dbConn.Exec("DELETE FROM `sd5-state`.? WHERE gen_id = ? AND status_code = '?'", table, generatorId, statusCode); err != nil {
if _, err := dbConn.Exec("DELETE FROM `sd5-state`.$1 WHERE gen_id = $2 AND status_code = '$3'", table, generatorId, statusCode); err != nil {
fmt.Printf("Error removing status/fault: %v\n", err)
}
} else {
if _, err := dbConn.Exec("INSERT INTO `sd5-state`.? (gen_id, status_code) VALUES (?, '?') ON DUPLICATE KEY UPDATE gen_id = VALUES(gen_id), status_code = VALUES(status_code)", table, generatorId, statusCode); err != nil {
if _, err := dbConn.Exec("INSERT INTO `sd5-state`.$1 (gen_id, status_code) VALUES ($2, $3) ON DUPLICATE KEY UPDATE gen_id = VALUES(gen_id), status_code = VALUES(status_code)", table, generatorId, statusCode); err != nil {
fmt.Printf("Error setting status/fault: %v\n", err)
}
}
Expand Down

0 comments on commit 890b527

Please sign in to comment.