diff options
author | Max Romanov <max.romanov@nginx.com> | 2020-12-07 18:17:25 +0000 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2020-12-07 18:17:25 +0000 |
commit | d3796d1fb7008629a8fa505481dab96efe60cbdb (patch) | |
tree | c299ebcd54447fb280659374d07121db3d064850 /docs/changes.xml | |
parent | c7bd96b4769abb11a92a081061bc83171d5ed6ac (diff) | |
download | unit-d3796d1fb7008629a8fa505481dab96efe60cbdb.tar.gz unit-d3796d1fb7008629a8fa505481dab96efe60cbdb.tar.bz2 |
Ruby: fixed crash on thread start.
Ruby threads need to be created with GVL; otherwise, an attempt to access
locked resources may occur, causing a crash.
The issue was occasionally reproduced on Ubuntu 18.04 with Ruby 2.5.1
while running test_ruby_application_threads.
Diffstat (limited to 'docs/changes.xml')
-rw-r--r-- | docs/changes.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/changes.xml b/docs/changes.xml index 11032a02..a67a671b 100644 --- a/docs/changes.xml +++ b/docs/changes.xml @@ -22,6 +22,12 @@ in PHP module. </para> </change> +<change type="bugfix"> +<para> +Ruby apps with configured mutlithreading could crash on start under load. +</para> +</change> + </changes> |