View Single Post
  #5  
Old 08-15-2006, 08:49 AM
mistwang mistwang is offline
LiteSpeed Staff
 
Join Date: May 2003
Location: New Jersey
Posts: 7,603
Can you please try below see if it is the cause of the problem?
In ruy-lsapi/ext/lsapi/lsruby.c, in function lsapi_read()
comment out
Code:
FD_ZERO( &readfds );
...
If (rb_thread_select(...) < 1 )
{
return Qnil;
}
The rb_thread_select() may block the execution when the post body is small. should not add that in 1.4.
Reply With Quote