-
-
Notifications
You must be signed in to change notification settings - Fork 283
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
GoDaddy throttling #393
Comments
That is not a throttled response, rather a partial response. The way GoDaddy throttles requests is by dropping the socket connection. |
So what's the proper way of handling this then? |
There was some discussion to improve the ability to deal with separate parts in a thin request flow (#186), but it was never implemented. |
Also...would that method be valid if changed to response_incomplete? |
Not really. |
It may be valid, but at least in the case, if I try and query expires_on, I get nil, even though if I'm looking at the text whois, there is an expires_on provided. Maybe the issue isn't in the part-parser itself then, but that how it's decided on which part-parser to use. |
It should be falling back to the parent parser, if the specific one doesn't contain the value. |
well, in this case, there's 2 parts: the verisign part, and the godaddy part. By 'parent parser' do you mean another part-parser, or parsers/base? |
I've noticed that GoDaddy throttles requests, but the parser has no support for it. Thus far I've added this method to extend the parser:
The text was updated successfully, but these errors were encountered: