Ho creato un server molto semplice che utilizza Meteor, per inviare un'email dopo un timeout. Quando utilizzo un timeout, il messaggio viene inviato correttamente ma viene generato un errore: [Error: Can't wait without a fiber]
.Meteor [Errore: impossibile attendere senza fibra] dopo una chiamata a Email.send
Ecco il mio codice:
if (Meteor.isServer) {
Meteor.startup(function() {
// <DUMMY VALUES: PLEASE CHANGE>
process.env.MAIL_URL = 'smtp://me%40example.com:[email protected]:25';
var to = '[email protected]'
var from = '[email protected]'
// </DUMMY>
//
var subject = 'Message'
var message = "Hello Meteor"
var eta_ms = 10000
var timeout = setTimeout(sendMail, eta_ms);
console.log(eta_ms)
function sendMail() {
console.log("Sending...")
try {
Email.send({
to: to,
from: from,
subject: subject,
text: message
})
} catch (error) {
console.log("Email.send error:", error)
}
}
})
}
ho capito che avrei potuto usare Meteor.wrapAsync
per creare una fibra. Ma wrapAsync
si aspetta che ci sia un callback per chiamare, e Email.send
non usa una richiamata.
Cosa devo fare per eliminare l'errore?