lukasa (Cory Benfield)
- Login: lukasa
- Registered on: 11/02/2016
- Last sign in: 11/02/2016
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
11/03/2016
-
08:26 AM Ruby Bug #12890: Net::HTTP should treat unexpected 1XX responses as non-final.
- Apologies, it was noted that it would be more helpful to provide the example server in Ruby instead:
~~~ ruby
require 'socket'
server = TCPServer.new 8080
loop do
client = server.accept
client.puts "HTTP/1.1 103 Ear...
11/02/2016
-
08:58 PM Ruby Bug #12890 (Closed): Net::HTTP should treat unexpected 1XX responses as non-final.
- Long story short
Net::HTTP's client does not tolerate non-100 status codes from the 1XX block in a sensible manner: it treats them as final responses, rather than as provisional ones.
Expected behaviour
When Net::HTTP receives...