##// END OF EJS Templates
chg: server exited with code 0 without being connectable is an error...
Jun Wu -
r28863:6e06fbee default
parent child Browse files
Show More
@@ -269,6 +269,9 b' static hgclient_t *retryconnectcmdserver'
269 269
270 270 cleanup:
271 271 if (WIFEXITED(pst)) {
272 if (WEXITSTATUS(pst) == 0)
273 abortmsg("could not connect to cmdserver "
274 "(exited with status 0)");
272 275 debugmsg("cmdserver exited with status %d", WEXITSTATUS(pst));
273 276 exit(WEXITSTATUS(pst));
274 277 } else if (WIFSIGNALED(pst)) {
General Comments 0
You need to be logged in to leave comments. Login now