[perl #131479] [ASYNC] Proc::Async.kill doesn't seem to work when more than 1 proc is involved

2017-06-02 Thread Zoffix Znet via RT
On Thu, 01 Jun 2017 18:42:03 -0700, c...@zoffix.com wrote: > This appears to hang more often than not, despite printing "Killing" > messages. > > perl6 -e 'await ^2 .map: {start { with Proc::Async.new: $*EXECUTABLE, > "-e", "sleep" -> $p { Promise.in(2).then: {say "Killing"; $p.kill: > SIGTERM};

[perl #131479] [ASYNC] Proc::Async.kill doesn't seem to work when more than 1 proc is involved

2017-06-02 Thread Zoffix Znet via RT
On Thu, 01 Jun 2017 18:42:03 -0700, c...@zoffix.com wrote: > This appears to hang more often than not, despite printing "Killing" > messages. > > perl6 -e 'await ^2 .map: {start { with Proc::Async.new: $*EXECUTABLE, > "-e", "sleep" -> $p { Promise.in(2).then: {say "Killing"; $p.kill: > SIGTERM};

[perl #131479] [ASYNC] Proc::Async.kill doesn't seem to work when more than 1 proc is involved

2017-06-01 Thread via RT
# New Ticket Created by Zoffix Znet # Please include the string: [perl #131479] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131479 > This appears to hang more often than not, despite printing "Killing" messages. perl6 -e