From c60bd0395c5b7466bda22b4de64ca82fed1803b9 Mon Sep 17 00:00:00 2001 From: Atul Bhosale Date: Tue, 11 Jun 2019 17:19:18 +0530 Subject: [PATCH] Remove known bugs section from README.md [skip ci] --- README.md | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/README.md b/README.md index 3bd0c5e6..d37fef6a 100644 --- a/README.md +++ b/README.md @@ -238,19 +238,6 @@ Some platforms do not support all Puma features. * **JRuby**, **Windows**: server sockets are not seamless on restart, they must be closed and reopened. These platforms have no way to pass descriptors into a new process that is exposed to Ruby. Also, cluster mode is not supported due to a lack of fork(2). * **Windows**: daemon mode is not supported due to a lack of fork(2). -## Known Bugs - -For MRI versions 2.2.7, 2.2.8, 2.2.9, 2.2.10 2.3.4 and 2.4.1, you may see ```stream closed in another thread (IOError)```. It may be caused by a [Ruby bug](https://bugs.ruby-lang.org/issues/13632). It can be fixed with the gem https://rubygems.org/gems/stopgap_13632: - -```ruby -if %w(2.2.7 2.2.8 2.2.9 2.2.10 2.3.4 2.4.1).include? RUBY_VERSION - begin - require 'stopgap_13632' - rescue LoadError - end -end -``` - ## Deployment Puma has support for Capistrano with an [external gem](https://github.com/seuros/capistrano-puma).