modify alert sql

This commit is contained in:
menshibin 2024-08-12 22:13:57 +08:00
parent 05181f162d
commit 9ae084ee6e
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ async function subscribe(consumer) {
for (let i = 0; i < 50; i++) {
let res = await consumer.poll(100);
for (let [key, value] of res) {
console.log(key, value);
console.log(`data: ${key} ${value}`);
}
}
} catch (err) {