From d3796d1fb7008629a8fa505481dab96efe60cbdb Mon Sep 17 00:00:00 2001 From: Max Romanov Date: Mon, 7 Dec 2020 18:17:25 +0000 Subject: 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. --- docs/changes.xml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'docs/changes.xml') 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. + + +Ruby apps with configured mutlithreading could crash on start under load. + + + -- cgit