-
Notifications
You must be signed in to change notification settings - Fork 126
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
Parse error for some "verification timed out" response #607
Comments
This may not be reproducible, as I haven't seen it before the case today. Either way, something is odd in the launcher code. |
Seems I was able to reproduce it by just running a |
Can also reproduce on Windows by just running a dedi without port forwarding. |
Printing the buffer returned from the master server by doing something like ...
if (result == CURLcode::CURLE_OK)
{
rapidjson_document serverAddedJson;
spdlog::error("############################################");
spdlog::error("{}", readBuffer.c_str());
spdlog::error("############################################");
serverAddedJson.Parse(readBuffer.c_str());
... I get
implying the master server does not return valid JSON? |
cc @pg9182 i guess? |
Uh, you're saying it returned |
At least that's what in that buffer here. Not sure what the easiest way is to dump the full response. Curl logging? |
Related: R2Northstar/Northstar#685 Basically Cloudflare ingesting its own response here |
When receiving
it produces
on launcher, i.e. it fails to parse the response correctly.
Related:
NorthstarLauncher/NorthstarDLL/masterserver/masterserver.cpp
Line 1267 in da7061a
The text was updated successfully, but these errors were encountered: