Skip to content

Commit 76a623f

Browse files
committed
Changed "" to '' in SQL query
1 parent 16d9673 commit 76a623f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ module.exports = (params) => {
268268
// Hunt for zombies (just the sleeping ones that this user owns)
269269
let zombies = await query(
270270
`SELECT ID,time FROM information_schema.processlist
271-
WHERE command = "Sleep" AND time >= ? AND user = ?
271+
WHERE command = 'Sleep' AND time >= ? AND user = ?
272272
ORDER BY time DESC`,
273273
[!isNaN(timeout) ? timeout : 60*15, _cfg.user])
274274

0 commit comments

Comments
 (0)