MysticElaine has asked for the wisdom of the Perl Monks concerning the following question:
Any help in understanding these errors and how to correct would be appreciated. Thanks329 print "\nRunning isok on ip $ip\n"; + + 330 + + 331 my $client = Gearman::Client->new; + + 332 $client->job_servers('<location>'); + 333 + + 334 my $results = decode_json( + + 335 ${ $client->do_task( + + 336 'isok_production', encode_json({ isok_payload => $ip + }) + 337 )} + + 338 ); + + 339 my @result = keys $results->{$ip};
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Fixing Experimental Keys error caused other errors to occur
by Fletch (Bishop) on May 05, 2021 at 19:02 UTC | |
by MysticElaine (Novice) on May 06, 2021 at 18:29 UTC | |
|
Re: Fixing Experimental Keys error caused other errors to occur
by AnomalousMonk (Archbishop) on May 05, 2021 at 22:00 UTC |