in reply to Frontier::Client - timeout?

but I can't find any definitive answer

Well, Devel::Trace and/or Devel::NYTProf and Use the Source, Luke, look inside

Replies are listed 'Best First'.
Re^2: Frontier::Client - timeout?
by monzol (Initiate) on Oct 11, 2017 at 18:29 UTC
    Frontier::Client is based on LWP::UserAgent and you can set the timeout through the ua instance:
    $cl = Frontier::Client->new( 'url' => $url, ); $cl->{'ua'}->timeout($timeout_secs) if $timeout_secs;