Skip to content

Commit

Permalink
Renamed machine param "nachlauf" with "offdelay"
Browse files Browse the repository at this point in the history
  • Loading branch information
cprezzi committed Feb 18, 2020
1 parent 81bad95 commit 2b1b92c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/controllers/aasController.js
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ exports.machines = function(req, res) {
//console.log('connected as id ' + connection.threadId);

var machines = Array();
connection.query('SELECT mid, m.name, config, price, period, u.name units, min_periods, nachlauf, watchdog FROM machines m LEFT JOIN price_units u ON m.uid=u.uid', function(error, rows, fields) {
connection.query('SELECT mid, m.name, config, price, period, u.name units, min_periods, offdelay, watchdog FROM machines m LEFT JOIN price_units u ON m.uid=u.uid', function(error, rows, fields) {
if (error) {
res.send(error);
} else {
Expand Down

0 comments on commit 2b1b92c

Please sign in to comment.