Clean up text throughout project
- Remove trailing newlines from redis.conf - Fix comment misspelling - Clarifies zipEncodeLength usage and a C API mention (#1243, #1242) - Fix cluster typos (inspired by @papanikge #1507) - Fix rewite -> rewrite in a few places (inspired by #682) Closes #1243, #1242, #1507
This commit is contained in:
parent
fc8f7ec765
commit
12d0195b30
@ -74,7 +74,7 @@ void aofRewriteBufferReset(void) {
|
||||
listSetFreeMethod(server.aof_rewrite_buf_blocks,zfree);
|
||||
}
|
||||
|
||||
/* Return the current size of the AOF rewite buffer. */
|
||||
/* Return the current size of the AOF rewrite buffer. */
|
||||
unsigned long aofRewriteBufferSize(void) {
|
||||
listNode *ln;
|
||||
listIter li;
|
||||
@ -245,7 +245,7 @@ int startAppendOnly(void) {
|
||||
redisLog(REDIS_WARNING,"Redis needs to enable the AOF but can't trigger a background AOF rewrite operation. Check the above logs for more info about the error.");
|
||||
return REDIS_ERR;
|
||||
}
|
||||
/* We correctly switched on AOF, now wait for the rewite to be complete
|
||||
/* We correctly switched on AOF, now wait for the rewrite to be complete
|
||||
* in order to append data on disk. */
|
||||
server.aof_state = REDIS_AOF_WAIT_REWRITE;
|
||||
return REDIS_OK;
|
||||
|
@ -124,7 +124,7 @@ int clusterLoadConfig(char *filename) {
|
||||
return REDIS_ERR;
|
||||
}
|
||||
|
||||
/* Parse the file. Note that single liens of the cluster config file can
|
||||
/* Parse the file. Note that single lines of the cluster config file can
|
||||
* be really long as they include all the hash slots of the node.
|
||||
* This means in the worst possible case, half of the Redis slots will be
|
||||
* present in a single line, possibly in importing or migrating state, so
|
||||
@ -1133,7 +1133,7 @@ int clusterStartHandshake(char *ip, int port) {
|
||||
|
||||
/* Add the node with a random address (NULL as first argument to
|
||||
* createClusterNode()). Everything will be fixed during the
|
||||
* handskake. */
|
||||
* handshake. */
|
||||
n = createClusterNode(NULL,REDIS_NODE_HANDSHAKE|REDIS_NODE_MEET);
|
||||
memcpy(n->ip,norm_ip,sizeof(n->ip));
|
||||
n->port = port;
|
||||
@ -1284,7 +1284,7 @@ void clusterSetNodeAsMaster(clusterNode *n) {
|
||||
* node (see the function comments for more info).
|
||||
*
|
||||
* The 'sender' is the node for which we received a configuration update.
|
||||
* Sometimes it is not actaully the "Sender" of the information, like in the case
|
||||
* Sometimes it is not actually the "Sender" of the information, like in the case
|
||||
* we receive the info via an UPDATE packet. */
|
||||
void clusterUpdateSlotsConfigWith(clusterNode *sender, uint64_t senderConfigEpoch, unsigned char *slots) {
|
||||
int j;
|
||||
@ -1597,7 +1597,7 @@ int clusterProcessPacket(clusterLink *link) {
|
||||
clusterDoBeforeSleep(CLUSTER_TODO_SAVE_CONFIG|
|
||||
CLUSTER_TODO_UPDATE_STATE);
|
||||
}
|
||||
/* Free this node as we alrady have it. This will
|
||||
/* Free this node as we already have it. This will
|
||||
* cause the link to be freed as well. */
|
||||
freeClusterNode(link->node);
|
||||
return 0;
|
||||
@ -1794,7 +1794,7 @@ int clusterProcessPacket(clusterLink *link) {
|
||||
}
|
||||
} else {
|
||||
redisLog(REDIS_NOTICE,
|
||||
"Ignoring FAIL message from unknonw node %.40s about %.40s",
|
||||
"Ignoring FAIL message from unknown node %.40s about %.40s",
|
||||
hdr->sender, hdr->data.fail.about.nodename);
|
||||
}
|
||||
} else if (type == CLUSTERMSG_TYPE_PUBLISH) {
|
||||
@ -1863,7 +1863,7 @@ int clusterProcessPacket(clusterLink *link) {
|
||||
clusterDoBeforeSleep(CLUSTER_TODO_SAVE_CONFIG|
|
||||
CLUSTER_TODO_FSYNC_CONFIG);
|
||||
|
||||
/* Check the bitmap of served slots and udpate our
|
||||
/* Check the bitmap of served slots and update our
|
||||
* config accordingly. */
|
||||
clusterUpdateSlotsConfigWith(n,reportedConfigEpoch,
|
||||
hdr->data.update.nodecfg.slots);
|
||||
@ -2761,7 +2761,7 @@ void clusterHandleManualFailover(void) {
|
||||
/* Return ASAP if no manual failover is in progress. */
|
||||
if (server.cluster->mf_end == 0) return;
|
||||
|
||||
/* If mf_can_start is non-zero, the failover was alrady triggered so the
|
||||
/* If mf_can_start is non-zero, the failover was already triggered so the
|
||||
* next steps are performed by clusterHandleSlaveFailover(). */
|
||||
if (server.cluster->mf_can_start) return;
|
||||
|
||||
@ -3300,7 +3300,7 @@ int verifyClusterConfigWithData(void) {
|
||||
* assigned to this slot. Fix this condition. */
|
||||
|
||||
update_config++;
|
||||
/* Case A: slot is unassigned. Take responsability for it. */
|
||||
/* Case A: slot is unassigned. Take responsibility for it. */
|
||||
if (server.cluster->slots[j] == NULL) {
|
||||
redisLog(REDIS_WARNING, "I have keys for unassigned slot %d. "
|
||||
"Taking responsibility for it.",j);
|
||||
@ -3613,7 +3613,7 @@ void clusterCommand(redisClient *c) {
|
||||
int del = !strcasecmp(c->argv[1]->ptr,"delslots");
|
||||
|
||||
memset(slots,0,REDIS_CLUSTER_SLOTS);
|
||||
/* Check that all the arguments are parsable and that all the
|
||||
/* Check that all the arguments are parseable and that all the
|
||||
* slots are not already busy. */
|
||||
for (j = 2; j < c->argc; j++) {
|
||||
if ((slot = getSlotOrReply(c,c->argv[j])) == -1) {
|
||||
@ -4180,14 +4180,14 @@ void restoreCommand(redisClient *c) {
|
||||
* This sockets are closed when the max number we cache is reached, and also
|
||||
* in serverCron() when they are around for more than a few seconds. */
|
||||
#define MIGRATE_SOCKET_CACHE_ITEMS 64 /* max num of items in the cache. */
|
||||
#define MIGRATE_SOCKET_CACHE_TTL 10 /* close cached socekts after 10 sec. */
|
||||
#define MIGRATE_SOCKET_CACHE_TTL 10 /* close cached sockets after 10 sec. */
|
||||
|
||||
typedef struct migrateCachedSocket {
|
||||
int fd;
|
||||
time_t last_use_time;
|
||||
} migrateCachedSocket;
|
||||
|
||||
/* Return a TCP scoket connected with the target instance, possibly returning
|
||||
/* Return a TCP socket connected with the target instance, possibly returning
|
||||
* a cached one.
|
||||
*
|
||||
* This function is responsible of sending errors to the client if a
|
||||
@ -4196,7 +4196,7 @@ typedef struct migrateCachedSocket {
|
||||
* attempt to free it after usage.
|
||||
*
|
||||
* If the caller detects an error while using the socket, migrateCloseSocket()
|
||||
* should be called so that the connection will be craeted from scratch
|
||||
* should be called so that the connection will be created from scratch
|
||||
* the next time. */
|
||||
int migrateGetSocket(redisClient *c, robj *host, robj *port, long timeout) {
|
||||
int fd;
|
||||
@ -4452,7 +4452,7 @@ void askingCommand(redisClient *c) {
|
||||
addReply(c,shared.ok);
|
||||
}
|
||||
|
||||
/* The READONLY command is uesd by clients to enter the read-only mode.
|
||||
/* The READONLY command is used by clients to enter the read-only mode.
|
||||
* In this mode slaves will not redirect clients as long as clients access
|
||||
* with read-only commands to keys that are served by the slave's master. */
|
||||
void readonlyCommand(redisClient *c) {
|
||||
|
@ -11,7 +11,7 @@
|
||||
#define REDIS_CLUSTER_NAMELEN 40 /* sha1 hex length */
|
||||
#define REDIS_CLUSTER_PORT_INCR 10000 /* Cluster port = baseport + PORT_INCR */
|
||||
|
||||
/* The following defines are amunt of time, sometimes expressed as
|
||||
/* The following defines are amount of time, sometimes expressed as
|
||||
* multiplicators of the node timeout value (when ending with MULT). */
|
||||
#define REDIS_CLUSTER_DEFAULT_NODE_TIMEOUT 15000
|
||||
#define REDIS_CLUSTER_DEFAULT_SLAVE_VALIDITY 10 /* Slave max data age factor. */
|
||||
@ -51,7 +51,7 @@ typedef struct clusterLink {
|
||||
#define REDIS_NODE_HANDSHAKE 32 /* We have still to exchange the first ping */
|
||||
#define REDIS_NODE_NOADDR 64 /* We don't know the address of this node */
|
||||
#define REDIS_NODE_MEET 128 /* Send a MEET message to this node */
|
||||
#define REDIS_NODE_PROMOTED 256 /* Master was a slave propoted by failover */
|
||||
#define REDIS_NODE_PROMOTED 256 /* Master was a slave promoted by failover */
|
||||
#define REDIS_NODE_NULL_NAME "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
|
||||
|
||||
#define nodeIsMaster(n) ((n)->flags & REDIS_NODE_MASTER)
|
||||
@ -117,7 +117,7 @@ typedef struct clusterState {
|
||||
or zero if stil not received. */
|
||||
int mf_can_start; /* If non-zero signal that the manual failover
|
||||
can start requesting masters vote. */
|
||||
/* The followign fields are uesd by masters to take state on elections. */
|
||||
/* The followign fields are used by masters to take state on elections. */
|
||||
uint64_t lastVoteEpoch; /* Epoch of the last vote granted. */
|
||||
int todo_before_sleep; /* Things to do in clusterBeforeSleep(). */
|
||||
long long stats_bus_messages_sent; /* Num of msg sent via cluster bus. */
|
||||
|
@ -2106,7 +2106,7 @@ void sentinelPublishReplyCallback(redisAsyncContext *c, void *reply, void *privd
|
||||
* or sent directly to this sentinel via the (fake) PUBLISH command of Sentinel.
|
||||
*
|
||||
* If the master name specified in the message is not known, the message is
|
||||
* discareded. */
|
||||
* discarded. */
|
||||
void sentinelProcessHelloMessage(char *hello, int hello_len) {
|
||||
/* Format is composed of 8 tokens:
|
||||
* 0=ip,1=port,2=runid,3=current_epoch,4=master_name,
|
||||
|
@ -385,7 +385,7 @@ int string2l(const char *s, size_t slen, long *lval) {
|
||||
}
|
||||
|
||||
/* Convert a double to a string representation. Returns the number of bytes
|
||||
* required. The representation should always be parsable by stdtod(3). */
|
||||
* required. The representation should always be parsable by strtod(3). */
|
||||
int d2string(char *buf, size_t len, double value) {
|
||||
if (isnan(value)) {
|
||||
len = snprintf(buf,len,"nan");
|
||||
|
@ -183,7 +183,7 @@ static unsigned int zipIntSize(unsigned char encoding) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Encode the length 'l' writing it in 'p'. If p is NULL it just returns
|
||||
/* Encode the length 'rawlen' writing it in 'p'. If p is NULL it just returns
|
||||
* the amount of bytes required to encode such a length. */
|
||||
static unsigned int zipEncodeLength(unsigned char *p, unsigned char encoding, unsigned int rawlen) {
|
||||
unsigned char len = 1, buf[5];
|
||||
|
Loading…
Reference in New Issue
Block a user