Mantis - Resin
Viewing Issue Advanced Details
225 minor always 05-27-05 00:00 01-26-06 14:15
user142  
ferg  
low  
closed  
fixed  
none    
none 3.0.18  
0000225: Can't connect to parent process through socket null
RSN-248
In com.caucho.server.resin.Resin, the following code:

if (socket == null) {
  System.err.println("Can't connect to parent process through socket " + socket);
  System.err.println("Resin needs to connect to its parent.");
  System.exit(0);
}

Should read:

if (socket == null) {
  System.err.println("Can't connect to parent process through socket " + socketport);
  System.err.println("Resin needs to connect to its parent.");
  System.exit(0);
}

Instead. The existing code gives the message "Can't connect to parent process through socket null", which isn't very helpful. :-)
Any

There are no notes attached to this issue.