Skip to content

Commit

Permalink
Version 0.8.47
Browse files Browse the repository at this point in the history
- Fixes #305
- Updated copyright year in page footer.
  • Loading branch information
jhuckaby committed Jul 18, 2020
1 parent fc056f9 commit f6a93d5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion htdocs/index-dev.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<div id="d_footer">
<div class="left">
<a href="https://github.com/jhuckaby/Cronicle" target="_blank">Cronicle</a> is
&copy; 2015 - 2018 by <a href="http://pixlcore.com" target="_blank">PixlCore</a>.
&copy; 2015 - 2020 by <a href="http://pixlcore.com" target="_blank">PixlCore</a>.
Released under the <a href="https://github.com/jhuckaby/Cronicle/blob/master/LICENSE.md" target="_blank">MIT License</a>.
</div>
<div id="d_footer_version" class="right">
Expand Down
3 changes: 2 additions & 1 deletion lib/job.js
Original file line number Diff line number Diff line change
Expand Up @@ -587,10 +587,11 @@ module.exports = Class.create({
try {
child = cp.spawn( child_cmd, child_args, child_opts );
if (!child || !child.pid || !child.stdin || !child.stdout) {
throw new Error("Child process failed to spawn (Server possibly out of memory?)");
throw new Error("Child process failed to spawn (Check executable location and permissions?)");
}
}
catch (err) {
if (child) child.on('error', function() {}); // prevent crash
if (worker.log_fd) { fs.closeSync(worker.log_fd); worker.log_fd = null; }
job.pid = 0;
job.code = 1;
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Cronicle",
"version": "0.8.46",
"version": "0.8.47",
"description": "A simple, distributed task scheduler and runner with a web based UI.",
"author": "Joseph Huckaby <[email protected]>",
"homepage": "https://github.com/jhuckaby/Cronicle",
Expand Down Expand Up @@ -60,4 +60,4 @@
"devDependencies": {
"pixl-unit": "^1.0.10"
}
}
}

0 comments on commit f6a93d5

Please sign in to comment.