Skip to content

Commit

Permalink
Merge pull request #1582 from mattsta/add-error-mention-to-error-cond…
Browse files Browse the repository at this point in the history
…ition

Cluster: Update accept error to mention error
  • Loading branch information
antirez committed Dec 17, 2014
2 parents 9a63543 + a772747 commit abd95ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cluster.c
Expand Up @@ -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);
Expand Down

0 comments on commit abd95ff

Please sign in to comment.