mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
lib/webrick/server.rb: avoid redundant fcntl call
Sockets are close-on-exec by default since Ruby 2.0, so it is redundant to set it again. * lib/webrick/server.rb (accept_client): avoid redundant fcntl call [Feature #11137] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50519 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
8ff35b816a
commit
ce34a90fb5
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Sun May 17 14:57:42 2015 Eric Wong <e@80x24.org>
|
||||
|
||||
* lib/webrick/server.rb (accept_client): avoid redundant fcntl call
|
||||
[Feature #11137]
|
||||
|
||||
Sun May 17 12:13:33 2015 Eric Wong <e@80x24.org>
|
||||
|
||||
* ext/socket/init.c (cloexec_accept): support nonblock flag and
|
||||
|
|
|
@ -263,7 +263,6 @@ module WEBrick
|
|||
sock = svr.accept
|
||||
sock.sync = true
|
||||
Utils::set_non_blocking(sock)
|
||||
Utils::set_close_on_exec(sock)
|
||||
rescue Errno::ECONNRESET, Errno::ECONNABORTED,
|
||||
Errno::EPROTO, Errno::EINVAL
|
||||
rescue StandardError => ex
|
||||
|
|
Loading…
Reference in a new issue