Lau*_*ris 9 javascript queue redis node.js
我在执行请求时收到此错误。
(节点:3993)[DEP0097] 弃用警告:不推荐在 MakeCallback 中使用域属性。请改用 MakeCallback 的 async_context 变体或 AsyncResource 类。
那是我的控制器 的代码:AppointmentController队列的代码:Queue Nodemailer:Mail
async delete(req, res) {
const { appointment_id } = req.params;
if (!appointment_id) {
return res.status(404).json({
error: "It's not possible to cancel an appointment with passing an id",
});
}
const appointment = await Appointment.findByPk(appointment_id, {
include: [
{
model: Restaurant,
as: 'restaurant',
attributes: ['id', 'name', 'provider_id'],
include: [
{
model: Provider,
foreignKey: 'provider_id',
as: 'provider',
},
],
},
{
model: User,
as: 'user',
attributes: ['id', 'name', 'email'],
},
],
});
if (!appointment) {
return res.status(404).json({ error: 'Appointment not found' });
}
if (appointment && appointment.canceled_at !== null) {
return res
.status(420)
.json({ error: 'This appointment was already canceled' });
}
// The user can cancel only his/her appointments - Verifying if the id is different
if (appointment.user_id !== req.userId) {
return res.status(401).json({
error: "You don't have permission to cancel this appointment",
});
}
// It's just allowed to cancel appointments with 1 hour of advance
const dateWithSub = subHours(appointment.date, 1);
if (isBefore(dateWithSub, new Date())) {
return res.status(401).json({
error: 'You can only cancel appointments with 1 hour of advance',
});
}
// Changing the field canceled_at with the current date
appointment.canceled_at = new Date();
await appointment.save();
const formatedDate = format(
appointment.date,
"'Day' dd 'of' MMMM',' H:mm 'Hours'"
);
await Queue.add(CancellationMail.key, { appointment, formatedDate });
return res.json(appointment);
}
}
Run Code Online (Sandbox Code Playgroud)
另外,我正在为电子邮件作业使用队列。问题是,我不知道这个错误是与节点有关还是来自我正在使用的服务之一。
找到源代码的一种简单方法是使用--trace-deprecation标志启动您的应用程序,这将打印指向使用已弃用模块的代码的堆栈跟踪。
| 归档时间: |
|
| 查看次数: |
13081 次 |
| 最近记录: |