summaryrefslogtreecommitdiff
path: root/src/cluster.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cluster.h')
-rw-r--r--src/cluster.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cluster.h b/src/cluster.h
index 68d7af3a4..571b9c543 100644
--- a/src/cluster.h
+++ b/src/cluster.h
@@ -103,9 +103,9 @@ typedef struct clusterLink {
/* Flags that a module can set in order to prevent certain Redis Cluster
* features to be enabled. Useful when implementing a different distributed
* system on top of Redis Cluster message bus, using modules. */
-#define MODULE_CLUSTER_FLAG_NONE 0
-#define MODULE_CLUSTER_FLAG_NO_FAILOVER (1<<1)
-#define MODULE_CLUSTER_FLAG_NO_REDIRECTION (1<<2)
+#define CLUSTER_MODULE_FLAG_NONE 0
+#define CLUSTER_MODULE_FLAG_NO_FAILOVER (1<<1)
+#define CLUSTER_MODULE_FLAG_NO_REDIRECTION (1<<2)
/* This structure represent elements of node->fail_reports. */
typedef struct clusterNodeFailReport {