Files
nginx-unit/test/perl/threads/psgi.pl
2020-11-05 16:11:01 +03:00

12 lines
261 B
Perl

my $app = sub {
my ($environ) = @_;
sleep int($environ->{'HTTP_X_DELAY'});
return ['200', [
'Content-Length' => 0,
'Psgi-Multithread' => $environ->{'psgi.multithread'},
'X-Thread' => $environ->{'psgi.input'}
], []];
};