Home
last modified time | relevance | path

Searched refs:error_code (Results 1 – 3 of 3) sorted by relevance

/redis-3.2.3/src/
H A Dcluster.c4983 if (error_code) *error_code = CLUSTER_REDIR_NONE; in getNodeByQuery()
5034 if (error_code) in getNodeByQuery()
5058 if (error_code) in getNodeByQuery()
5085 if (error_code) *error_code = CLUSTER_REDIR_DOWN_STATE; in getNodeByQuery()
5101 if (error_code) *error_code = CLUSTER_REDIR_ASK; in getNodeByQuery()
5113 if (error_code) *error_code = CLUSTER_REDIR_UNSTABLE; in getNodeByQuery()
5133 if (n != myself && error_code) *error_code = CLUSTER_REDIR_MOVED; in getNodeByQuery()
5145 if (error_code == CLUSTER_REDIR_CROSS_SLOT) { in clusterRedirectClient()
5147 } else if (error_code == CLUSTER_REDIR_UNSTABLE) { in clusterRedirectClient()
5156 } else if (error_code == CLUSTER_REDIR_MOVED || in clusterRedirectClient()
[all …]
H A Dcluster.h259 void clusterRedirectClient(client *c, clusterNode *n, int hashslot, int error_code);
H A Dserver.c2389 int error_code; in processCommand() local
2391 &hashslot,&error_code); in processCommand()
2398 clusterRedirectClient(c,n,hashslot,error_code); in processCommand()