jahrens has asked for the wisdom of the Perl Monks concerning the following question:
I didn't think this was possible.
So I'm using Net::SSH::Perl. Randomly it seems a connection that is in use will manage to kill perl while within an eval.The code is very simple. $ssh is a Net::Perl::SSH object that is connected and authenticated.
eval {($out, $err, $status) = $ssh->cmd("ls -l")};It manages to kill perl. Like, total exit, no errors printed. I'm hoping someone might have some idea about what's going on, or how I might track it down. It's seems random, which makes it even worse. The exact same sequence of commands can work one time, but not another.
If nothing else, how about an explanation about how it's managing to die within an 'eval' without getting back to the main program?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Net::SSH::Perl kills perl from within an eval (exit)
by tye (Sage) on Oct 28, 2008 at 01:05 UTC | |
|
Re: Net::SSH::Perl kills perl from within an eval
by salva (Canon) on Oct 28, 2008 at 08:19 UTC | |
|
Re: Net::SSH::Perl kills perl from within an eval
by almut (Canon) on Oct 28, 2008 at 01:35 UTC | |
|
Re: Net::SSH::Perl kills perl from within an eval
by Krambambuli (Curate) on Oct 28, 2008 at 07:27 UTC | |
|
Re: Net::SSH::Perl kills perl from within an eval
by jahrens (Acolyte) on Oct 28, 2008 at 01:54 UTC | |
by ikegami (Patriarch) on Oct 28, 2008 at 02:21 UTC |