summaryrefslogtreecommitdiff
path: root/ext/-test-/path_to_class
diff options
context:
space:
mode:
authorKir Shatrov <shatrov@me.com>2020-08-27 08:39:13 +0100
committerGitHub <noreply@github.com>2020-08-27 16:39:13 +0900
commit2038cc6cab6ceeffef3ec3a765c70ae684f829ed (patch)
treec508ac47f217e759526f08b04684e96dfec2ff4d /ext/-test-/path_to_class
parent1035a3b202ee86bf2b0a1d00eefcfff0d7ab9f6b (diff)
Make Socket.getaddrinfo interruptible (#2827)
Before, Socket.getaddrinfo was using a blocking getaddrinfo(3) call. That didn't allow to wrap it into Timeout.timeout or interrupt the thread in any way. Combined with the default 10 sec resolv timeout on many Unix systems, this can have a very noticeable effect on production Ruby apps being not resilient to DNS outages and timing out name resolution, and being unable to fail fast even with Timeout.timeout. Since we already have support for getaddrinfo_a(3), the async version of getaddrinfo, we should be able to make Socket.getaddrinfo leverage that when getaddrinfo_a version is available in the system (hence #ifdef HAVE_GETADDRINFO_A). Related tickets: https://bugs.ruby-lang.org/issues/16476 https://bugs.ruby-lang.org/issues/16381 https://bugs.ruby-lang.org/issues/14997
Notes
Notes: Merged-By: mmasaki <glass.saga@gmail.com>
Diffstat (limited to 'ext/-test-/path_to_class')
0 files changed, 0 insertions, 0 deletions