Merge pull request #1582 from mattsta/add-error-mention-to-error-condition

Cluster: Update accept error to mention error
This commit is contained in:
Salvatore Sanfilippo 2014-12-17 17:48:18 +01:00
commit abd95ffdfd

View File

@ -593,7 +593,7 @@ void clusterAcceptHandler(aeEventLoop *el, int fd, void *privdata, int mask) {
if (cfd == ANET_ERR) {
if (errno != EWOULDBLOCK)
redisLog(REDIS_VERBOSE,
"Accepting cluster node: %s", server.neterr);
"Error accepting cluster node: %s", server.neterr);
return;
}
anetNonBlock(NULL,cfd);