Hmm , try turning off safe signals, see Perl::Unsafe::Signals

Also try turning on cpan curl timeout , site:metacpan.org curl timeout , site:cpan.org curl timeout , -> https://metacpan.org/pod/WWW::Curl::Simple#connection_timeout-connection_timeout_ms/ https://metacpan.org/source/ANDREMAR/WWW-Curl-Simple-0.100191/lib/WWW/Curl/Simple.pm

if ($self->timeout_ms) { unless ($WWW::Curl::Easy::CURLOPT_TIMEOUT_MS) { croak( "Your trying to use timeout_ms, but your libcur +l is apperantly older than 7.16.12."); } $curl->setopt($WWW::Curl::Easy::CURLOPT_TIMEOUT_MS, $self- +>timeout_ms) if $self->timeout_ms; $curl->setopt($WWW::Curl::Easy::CURLOPT_CONNECTTIMEOUT_MS, + $self->connection_timeout_ms) if $self->connection_timeout_ms; } else { $curl->setopt(CURLOPT_TIMEOUT, $self->timeout) if $self->t +imeout; $curl->setopt(CURLOPT_CONNECTTIMEOUT, $self->connection_ti +meout) if $self->connection_timeout; }

http://search.cpan.org/grep?cpanid=SZBALINT&release=WWW-Curl-4.17&string=time&i=1&n=1&C=0

t/01basic.t 20:ok(! $curl->setopt(CURLOPT_TIMEOUT, 30), "Setting CURLOPT_TIMEOUT") +;

In reply to Re^3: WWW::Curl pause conflict by Anonymous Monk
in thread WWW::Curl pause conflict by krmx

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.