alexis (Alexis Bernard)
- Login: alexis
- Registered on: 09/06/2018
- Last sign in: 12/20/2018
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
11/13/2024
-
04:13 PM Ruby Revision 202a377d (git): [ruby/rdoc] Split list of class and instance methods in two
- (https://github.com/ruby/rdoc/pull/1206)
Looking for a method is easier because eyes don't have to skip dashes or
double colon.
https://github.com/ruby/rdoc/commit/6852567640
09/17/2018
-
07:01 PM Ruby Bug #15082: Memory leak in net/http/response and net/http/header
- I kept to investigate the memory leak issue. It seems it comes when OpenSSL::SSL::VERIFY_PEER is enabled and a ca_file is specified :
~~~ ruby
require "net/http"
require "openssl"
def repeat_https_get
uri = URI("https://exampl...
09/11/2018
-
03:12 PM Ruby Bug #15082: Memory leak in net/http/response and net/http/header
- Thanks for pointing this PR. I ran it again with this specific memory_profiler version and there is no memory leaks.
It seems that I don't have enough permissions to close the issue.
09/06/2018
-
06:23 AM Ruby Bug #15082 (Closed): Memory leak in net/http/response and net/http/header
- Hello,
I'm observing a memory leak in net/http with the following script :
~~~
require "net/http"
require "bundler/inline"
gemfile do
gem "memory_profiler"
end
def profile_http_get(n)
uri = URI("http://www.ruby-lang....