-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unhandled Rejection #53
Comments
What version of Fawn? and can you share the code that causes that error? |
2.1.5 `
|
The error bubbles up to the user when something goes wrong that the user needs to know about. You can always catch any errors that occur to prevent crashing. let task = Fawn.Task();
task.save(...);
task.update(...);
try{
let result = await task.run();
}
catch(err){
console.log(err.message);
} |
I use the following code but wasn't enough
|
That's strange. I'll look into it. |
Suddenly my server stop working and throws the following error. For the moment, I resolved it by dropping the ojlinttaskcollections db.
The text was updated successfully, but these errors were encountered: