What does β€œexit status 1” mean in ScraperWiki, is it a failure?

The user received this message from the scraper run.

Run succeeded: - ran 1 times, most recently for 2073 seconds (288 scraped pages, 2 records) 17:45, 5 May 2011 Hide Details EXECUTIONSTATUS: uml=uml003 runid=1304613933.039043_3bf3b898b74f46d9e85aa2189ce9e1ee2c7a328c EXECUTIONSTATUS: 2071 seconds elapsed, 142 CPU seconds used, exit status 1 

What is exit status 1? Is it success or failure? If it is an Error, is there a log file?

+4
source share
1 answer

"Exit Status" is simply a display of the Unix exit status in a Ruby script style.

eg. If you made "exit 73" from a Ruby script, it would display exit status 73.

On Unix, 0 means no error, so 1 means some kind of error or something is wrong.

A logging system is simply using print operations (or more useful, static). You can see this in the history window for scheduled runs or in the console while working in development.

+2
source

All Articles