You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 2, 2021. It is now read-only.
Over the past few weeks, since the introduction to Promise.await to our codebase, we have been getting strange SIGABRT (exit code 6) in both production and local environments. After looking at the code I see there are asserts:
Are you sure require("meteor-promise").makeCompatible(Promise, require("fibers")) is getting called early enough? If it's a Meteor app, that should happen automatically, but I guess it's possible you have multiple Promise constructors floating around.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Over the past few weeks, since the introduction to Promise.await to our codebase, we have been getting strange SIGABRT (exit code 6) in both production and local environments. After looking at the code I see there are
asserts
:https://github.com/meteor/promise/blob/master/promise_server.js#L47
If these asserts fail, I believe this would be the cause of our exit? Do you have any information or clues I should look into?
The log lines we have before the exit are running code that uses
async/await
orPromise.await
The text was updated successfully, but these errors were encountered: