George
George
OK, I dug deeper and found that I can pass options directly to the chart control using `library` key. However, this doesn't make sense in my use case because it...
OK, thanks for the info. I was able to make it work this way. I guess it won't handle encryption... ``` Zip::File.open( zipfile_name, Zip::File::CREATE ) do | zipfile | files.each.with_index(1)...
What if we change it to @tracer.with_new_span(trace_id,"#{env['REQUEST_METHOD']} #{env['PATH_INFO']}".downcase) do ... Since this is a default, it might be better to more explicit...? (Although I have zero context so this is...
I received this as well on Ruby 2.2.0. ``` > gem install proxifier Fetching: proxifier-1.0.3.gem (100%) Successfully installed proxifier-1.0.3 1 gem installed > irb irb(main):001:0> require 'proxifier/proxy' => true irb(main):002:0>...
@jeppevb - Not really an answer to your issue, but I'll share with you my experience. Using Ruby on Windows makes it more difficult than Mac or Ubuntu. I suggest...
h2spec doesn't even run against insecure server for me(see below). However, it does run (`./bin/h2spec -p 8080 -t -k`) against the secure server with 73 tests, 33 passed, 0 skipped,...
@igrigorik - I think what is happening is that we are receiving a frame of length 0: ``` Received bytes: 505249202a20485454502f322e300d0a0d0a534d0d0a0d0a000000040000000000 Received frame: {:length=>0, :type=>:settings, :flags=>[], :stream=>0, :payload=>[]} ``` Which...
Not sure...but wondering why it only happens with the insecure server. It strange because the only difference between them is that insecure server is a `TCPServer` and secure server is...
This issue does not seem to have to do with the server or the socket, but with the settings negotiation. The secure server sends the ack, and then receives an...
OK, so finally figured out what is happening. `sock.write bytes` [(server.rb)](https://github.com/igrigorik/http-2/blob/master/example/server.rb#L53) does not seem to write anything to the socket. That is why the settings negotiation is timing out. Replacing...