Skip to content

Commit

Permalink
Fix for node 0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim committed Jun 13, 2014
1 parent 98ccd1a commit 072751b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/worker_robustness.js
Expand Up @@ -26,7 +26,8 @@ cluster.setupMaster({

cluster.on('exit', function(worker) {
waitOnSocket = true;
worker.kill();
// hmm, it looks like node 0.8 does not have this method
//worker.kill();
});

var socketObj = io.listen(2718, {
Expand Down

0 comments on commit 072751b

Please sign in to comment.