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
This package should really be using promises as most calls are asynchronous.
This wasn't made clear in the documentation, but I realized it when I performed an expensive operation and the connection closed before it could be completed.
For now I need to wrap the calls in promises myself and resolve/reject in the callback like so:
I was using this on Vercel Serverless functions, and events weren't reflecting on the dashboard. After doing some investigation, turns out the serverless function closes even before a request is fully made.
This package should really be using promises as most calls are asynchronous.
This wasn't made clear in the documentation, but I realized it when I performed an expensive operation and the connection closed before it could be completed.
For now I need to wrap the calls in promises myself and resolve/reject in the callback like so:
The text was updated successfully, but these errors were encountered: