The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

helios_job_status - get a Helios job's exitstatus

SYNOPSIS

 helios_job_status --jobid=<jobid> 
   
 # return the exitstatus for job 12345
 helios_job_status --jobid=12345

 # first argument is assumed to be jobid, so "--jobid=" is optional
 helios_job_status 12345

DESCRIPTION

The helios_job_status command can be used to retrieve the exitstatus a job recorded in the Helios collective database. When a job is finished using the completedJob(), failedJob(), or failedJobPermanent() methods in your Helios::Service class, an exitstatus is recorded. Successful jobs are marked with a status of 0, while failed jobs will have an nonzero status. If a job has been marked as finished in a Helios collective, this command will return that job's exitstatus via STDOUT. If the job in question does not exist or has not been completed, nothing will be returned.

AUTHOR

Andrew Johnson, <lajandy at cpan dot org>

COPYRIGHT AND LICENSE

Copyright (C) 2013-4 by Logical Helion, LLC.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.0 or, at your option, any later version of Perl 5 you may have available.

WARRANTY

This software comes with no warranty of any kind.