From 073598ed8f0025d3d599d7c10ae687c3d34dc785 Mon Sep 17 00:00:00 2001 From: yjph Date: Tue, 6 Apr 2021 17:29:02 +0800 Subject: [PATCH] Update the location information in some URLs (#8595) --- src/blocked.c | 2 +- src/cluster.c | 2 +- src/networking.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/blocked.c b/src/blocked.c index 179bf3556..eb110bd35 100644 --- a/src/blocked.c +++ b/src/blocked.c @@ -566,7 +566,7 @@ void handleClientsBlockedOnKeys(void) { * way we can lookup an object multiple times (BLMOVE does * that) without the risk of it being freed in the second * lookup, invalidating the first one. - * See https://github.com/antirez/redis/pull/6554. */ + * See https://github.com/redis/redis/pull/6554. */ server.fixed_time_expire++; updateCachedTime(0); diff --git a/src/cluster.c b/src/cluster.c index d28c7541c..0f0ab737e 100644 --- a/src/cluster.c +++ b/src/cluster.c @@ -3858,7 +3858,7 @@ int clusterNodeSetSlotBit(clusterNode *n, int slot) { * However new masters with slots assigned are considered valid * migration targets if the rest of the cluster is not a slave-less. * - * See https://github.com/antirez/redis/issues/3043 for more info. */ + * See https://github.com/redis/redis/issues/3043 for more info. */ if (n->numslots == 1 && clusterMastersHaveSlaves()) n->flags |= CLUSTER_NODE_MIGRATE_TO; } diff --git a/src/networking.c b/src/networking.c index 850717b5a..fd8f379ec 100644 --- a/src/networking.c +++ b/src/networking.c @@ -3360,7 +3360,7 @@ void processEventsWhileBlocked(void) { /* Note: when we are processing events while blocked (for instance during * busy Lua scripts), we set a global flag. When such flag is set, we * avoid handling the read part of clients using threaded I/O. - * See https://github.com/antirez/redis/issues/6988 for more info. */ + * See https://github.com/redis/redis/issues/6988 for more info. */ ProcessingEventsWhileBlocked = 1; while (iterations--) { long long startval = server.events_processed_while_blocked;