Raku / old-issue-tracker

Tickets from RT
https://github.com/Raku/old-issue-tracker/issues
2 stars 1 forks source link

with Crust #5108

Open p6rt opened 8 years ago

p6rt commented 8 years ago

Migrated from rt.perl.org#127440 (status was 'new')

Searchable as RT127440$

p6rt commented 8 years ago

From lestrrat@gmail.com

Putting load against Crust produces a segmentation fault. Error​:

=begin

PERL6LIB=lib ./bin/crustup app.p6sgi http server is ready​: http://127.0.0.1​:5000/ (pid​:50723) zsh​: segmentation fault PERL6LIB=lib ./bin/crustup app.p6sgi

=end

to reproduce (on OS X, Yosemite)

=begin

brew install wrk

rakudobrew build moar rakudobrew build panda git clone git@​github.com​:tokuhirom/p6-Crust.git cd p6-Crust panda installdeps .

cat \<\app.p6sgi use v6;

sub (%env) {   return (200, ["Content-Type" => "text/plain"], ["Hello, World!\n"]) }; EOM

PERL6LIB=lib ./bin/crustapp app.p6sgi

wrk -c 400 https://127.0.0.1:5000/

=end

perl6 version​:

=begin

perl6 -v This is Rakudo version 2015.12-230-g2e17820 built on MoarVM version 2015.12-29-g8079ca5 implementing Perl 6.c.

=end