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
Synapse will await on the module API callbacks that this module relies on, which blocks Synapse's execution on this module's code. Since this module makes HTTP requests to an external process (Sydent), if that external server is taking a while to respond, this can cause Synapse to in turn respond slowly to client requests.
Since this module relies on Synapse module API methods that only fire after a third-party ID is successfully added or removed (removed functionality added in #3), such callbacks should immediately relinquish control back to Synapse and then in a separate thread go and send a request to Sydent and wait for a response.
The text was updated successfully, but these errors were encountered:
Synapse will
await
on the module API callbacks that this module relies on, which blocks Synapse's execution on this module's code. Since this module makes HTTP requests to an external process (Sydent), if that external server is taking a while to respond, this can cause Synapse to in turn respond slowly to client requests.Since this module relies on Synapse module API methods that only fire after a third-party ID is successfully added or removed (removed functionality added in #3), such callbacks should immediately relinquish control back to Synapse and then in a separate thread go and send a request to Sydent and wait for a response.
The text was updated successfully, but these errors were encountered: