Apache thrift: client timeout issues
问题 I have some Apache Thrift (v.0.6.1) test application with perl-server and php-client. The behaviour I cannot explain: If we call server-method with invalid argument we see the error in server-output, but php-client stays waiting the response infinitely. Here are the sources of server: sub new { my $classname = shift; my $self = {}; return bless($self,$classname); } sub DateToTimestamp { my ($self, $date) = @_; my $result = CommonAPI::DateToTimestamp($date); return $result; } eval { my