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
Somewhere in the dependency tree, agent-base is imported and wraps around the request method of https. Due to TooTallNate/node-agent-base#29, the code path for logout is using a signature of request that is out of sync with the signature in agent-base. This inevitably lead to the dropping of host and defaulting to localhost... as we are using Nginx for proxying and Cloudflare for SSL, we didn't have anything listening on localhost:443 and the whole registration application to crashed on each logout as the request error went unhandled. Even with handling, the logout request would become a noop as the logout call was never made to ground-truth.
Pull request #276 fixes the use of request to match the signature found in agent-base.
The text was updated successfully, but these errors were encountered:
Somewhere in the dependency tree,
agent-base
is imported and wraps around therequest
method ofhttps
. Due to TooTallNate/node-agent-base#29, the code path for logout is using a signature ofrequest
that is out of sync with the signature inagent-base
. This inevitably lead to the dropping ofhost
and defaulting tolocalhost
... as we are using Nginx for proxying and Cloudflare for SSL, we didn't have anything listening onlocalhost:443
and the whole registration application to crashed on each logout as therequest
error went unhandled. Even with handling, the logout request would become a noop as the logout call was never made to ground-truth.Pull request #276 fixes the use of
request
to match the signature found inagent-base
.The text was updated successfully, but these errors were encountered: